summaryrefslogtreecommitdiff
path: root/gtk2_ardour/enums.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-06-10 21:58:25 +0000
committerCarl Hetherington <carl@carlh.net>2009-06-10 21:58:25 +0000
commit52fc310cfb540f9fd7d459453cbbaaa4bde47e9e (patch)
tree3e3d575da2576656d26aa710d216405b8415875a /gtk2_ardour/enums.cc
parent2efc80da175cf6879c2a9904930f9be8381baf3d (diff)
Make waveform show / scale / shape a global option in the prefs dialog to clean things up a bit. Options to make exceptions for individual tracks could be re-added, if people want them.
git-svn-id: svn://localhost/ardour2/branches/3.0@5160 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/enums.cc')
-rw-r--r--gtk2_ardour/enums.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/gtk2_ardour/enums.cc b/gtk2_ardour/enums.cc
index 513be94aef..73675dc84c 100644
--- a/gtk2_ardour/enums.cc
+++ b/gtk2_ardour/enums.cc
@@ -39,8 +39,6 @@ setup_gtk_ardour_enums ()
Width width;
ImportMode import_mode;
EditPoint edit_point;
- WaveformScale waveform_scale;
- WaveformShape waveform_shape;
#define REGISTER(e) enum_writer.register_distinct (typeid(e).name(), i, s); i.clear(); s.clear()
#define REGISTER_BITS(e) enum_writer.register_bits (typeid(e).name(), i, s); i.clear(); s.clear()
@@ -68,12 +66,4 @@ setup_gtk_ardour_enums ()
REGISTER_ENUM (EditAtMouse);
REGISTER_ENUM (EditAtSelectedMarker);
REGISTER (edit_point);
-
- REGISTER_ENUM (LinearWaveform);
- REGISTER_ENUM (LogWaveform);
- REGISTER (waveform_scale);
-
- REGISTER_ENUM (Traditional);
- REGISTER_ENUM (Rectified);
- REGISTER (waveform_shape);
}