summaryrefslogtreecommitdiff
path: root/gtk2_ardour/crossfade_edit.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-10-31 17:47:49 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-10-31 17:47:49 +0000
commit5d0fbaeae73a2f1652c67e5aab73771edc0a20be (patch)
treeda7144a048157c47810bbbf6c544f1bc20540069 /gtk2_ardour/crossfade_edit.h
parent47f1cba718acbf82240d447a11a1e75a80dbe53b (diff)
default crossfade is now constant power; SAE gets only 3 xfades (not correct for 2 of them, yet); fade buttons in xfade editor have tooltips
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4073 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/crossfade_edit.h')
-rw-r--r--gtk2_ardour/crossfade_edit.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk2_ardour/crossfade_edit.h b/gtk2_ardour/crossfade_edit.h
index 3164118bd9..3d51771e2b 100644
--- a/gtk2_ardour/crossfade_edit.h
+++ b/gtk2_ardour/crossfade_edit.h
@@ -62,9 +62,10 @@ class CrossfadeEditor : public ArdourDialog
};
struct Preset : public list<PresetPoint> {
+ const char* name;
const char* image_name;
-
- Preset (const char* x) : image_name (x) {}
+
+ Preset (const char* n, const char* x) : name (n), image_name (x) {}
};
typedef list<Preset*> Presets;