summaryrefslogtreecommitdiff
path: root/gtk2_ardour/session_option_editor.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@glw.com>2012-12-14 17:21:44 +0000
committerBen Loftis <ben@glw.com>2012-12-14 17:21:44 +0000
commitb8a8abeb8f35b092deee46179190611ad16deae5 (patch)
tree4371b6fc53975d81aaf37ee37c208ed20de81141 /gtk2_ardour/session_option_editor.cc
parente5776d1a69f25540da7e30b3b1be516db3cc5ef4 (diff)
code cleanup; crossfade shape drawing is now more closely associated with the fade-in shape rather than a separate thing. could probably be consolidated into fewer functions, but this is an interim step for testing. Also remove the use-current-fade-shape option which is not meaningful in new model
git-svn-id: svn://localhost/ardour2/branches/3.0@13669 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/session_option_editor.cc')
-rw-r--r--gtk2_ardour/session_option_editor.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk2_ardour/session_option_editor.cc b/gtk2_ardour/session_option_editor.cc
index aa2a7c9ccd..9470dd8a8d 100644
--- a/gtk2_ardour/session_option_editor.cc
+++ b/gtk2_ardour/session_option_editor.cc
@@ -138,9 +138,8 @@ SessionOptionEditor::SessionOptionEditor (Session* s)
sigc::mem_fun (*_session_config, &SessionConfiguration::set_xfade_choice)
);
- cfc->add (ConstantPowerMinus3dB, _("constant power (-3dB)"));
- cfc->add (ConstantPowerMinus6dB, _("constant power (-6dB)"));
- cfc->add (RegionFades, _("use existing region fade shape"));
+ cfc->add (ConstantPowerMinus3dB, _("Constant power (-3dB) crossfade"));
+ cfc->add (ConstantPowerMinus6dB, _("Linear (-6dB) crossfade"));
add_option (_("Fades"), cfc);