summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2019-09-29 10:11:43 -0500
committerBen Loftis <ben@harrisonconsoles.com>2019-09-29 10:12:00 -0500
commit85485d4832bcc6f95ca5fb9532d2384698291e7a (patch)
tree79793ee5472f49fc1ec2c7364b3291ec9895a290 /gtk2_ardour/editor.cc
parent68f237169f83ddb862d3cbc9bbfd5d8bcf78c57a (diff)
Allow the Cut tool to appear in Mixbus.
Diffstat (limited to 'gtk2_ardour/editor.cc')
-rw-r--r--gtk2_ardour/editor.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc
index b1c279985b..fa4ad25bff 100644
--- a/gtk2_ardour/editor.cc
+++ b/gtk2_ardour/editor.cc
@@ -3054,9 +3054,7 @@ Editor::setup_toolbar ()
Glib::RefPtr<SizeGroup> mouse_mode_size_group = SizeGroup::create (SIZE_GROUP_VERTICAL);
mouse_mode_size_group->add_widget (smart_mode_button);
mouse_mode_size_group->add_widget (mouse_move_button);
- if (!Profile->get_mixbus()) {
- mouse_mode_size_group->add_widget (mouse_cut_button);
- }
+ mouse_mode_size_group->add_widget (mouse_cut_button);
mouse_mode_size_group->add_widget (mouse_select_button);
mouse_mode_size_group->add_widget (mouse_timefx_button);
if (!Profile->get_mixbus()) {
@@ -3093,8 +3091,9 @@ Editor::setup_toolbar ()
mouse_mode_hbox->pack_start (mouse_move_button, false, false);
mouse_mode_hbox->pack_start (mouse_select_button, false, false);
+ mouse_mode_hbox->pack_start (mouse_cut_button, false, false);
+
if (!ARDOUR::Profile->get_mixbus()) {
- mouse_mode_hbox->pack_start (mouse_cut_button, false, false);
mouse_mode_hbox->pack_start (mouse_audition_button, false, false);
}