summaryrefslogtreecommitdiff
path: root/gtk2_ardour/mixer_strip.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/mixer_strip.cc')
-rw-r--r--gtk2_ardour/mixer_strip.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc
index 89b4c1e53b..49ffff642e 100644
--- a/gtk2_ardour/mixer_strip.cc
+++ b/gtk2_ardour/mixer_strip.cc
@@ -663,7 +663,12 @@ MixerStrip::set_route (boost::shared_ptr<Route> rt)
/* non-master bus */
if (!_route->is_master()) {
- rec_mon_table.attach (*show_sends_button, 0, 3, 0, 2);
+ if (ARDOUR::Profile->get_mixbus()) {
+ rec_mon_table.attach (*show_sends_button, 0, 3, 0, 2);
+ } else {
+ rec_mon_table.attach (*show_sends_button, 0, 2, 0, 2);
+ }
+
if (_mixer_owned) {
show_sends_button->show();
} else {