summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_selection.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-11-15 03:21:59 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-11-15 03:21:59 +0000
commit638378ada2251eea8aa061641d90c16baf4cbe25 (patch)
treec401f3777ea31de9032be364f8ef0879de5e7609 /gtk2_ardour/editor_selection.cc
parentc0ec12c5bc85640a899599483440bd59a1e44b75 (diff)
flip a coin for a difficult GUI design question, and leave 4 region edit actions sensitive even when edit_point is EditAtMouse, to allow the kbd binding to still be active
git-svn-id: svn://localhost/ardour2/branches/3.0@10609 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_selection.cc')
-rw-r--r--gtk2_ardour/editor_selection.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk2_ardour/editor_selection.cc b/gtk2_ardour/editor_selection.cc
index b362d15f53..b98a7afd73 100644
--- a/gtk2_ardour/editor_selection.cc
+++ b/gtk2_ardour/editor_selection.cc
@@ -1085,10 +1085,12 @@ Editor::sensitize_the_right_region_actions ()
}
if (_edit_point == EditAtMouse) {
+#if 0
_region_actions->get_action("set-region-sync-position")->set_sensitive (false);
_region_actions->get_action("trim-front")->set_sensitive (false);
_region_actions->get_action("trim-back")->set_sensitive (false);
_region_actions->get_action("split-region")->set_sensitive (false);
+#endif
_region_actions->get_action("place-transient")->set_sensitive (false);
}