summaryrefslogtreecommitdiff
path: root/gtk2_ardour/mixer_strip.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-09-05 03:10:59 +0200
committerRobin Gareus <robin@gareus.org>2014-09-05 03:10:59 +0200
commitada9f106873b841d32d084a5188b2a88c0253de0 (patch)
tree276ee2cb83be519418fd472cc2508340d870af98 /gtk2_ardour/mixer_strip.cc
parent70be12afaa6c5d870a7d5373eeb7f4430a1be806 (diff)
fix 849d80b - don't show solo Lock/Iso on master bus
Diffstat (limited to 'gtk2_ardour/mixer_strip.cc')
-rw-r--r--gtk2_ardour/mixer_strip.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc
index 71813e84f7..3d6e360a34 100644
--- a/gtk2_ardour/mixer_strip.cc
+++ b/gtk2_ardour/mixer_strip.cc
@@ -491,6 +491,9 @@ MixerStrip::set_route (boost::shared_ptr<Route> rt)
solo_button->hide ();
mute_button->show ();
rec_mon_table.hide ();
+ if (solo_iso_table.get_parent()) {
+ solo_iso_table.get_parent()->remove(solo_iso_table);
+ }
} else {
bottom_button_table.attach (group_button, 1, 2, 0, 1);
mute_solo_table.attach (*mute_button, 0, 1, 0, 1);