summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-04-10 18:20:11 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:40 -0400
commitb2b5c965c854d222f70080de5fcafb10b75ff40b (patch)
treed994edd4700e66d754ad3f5573e628ba650af8c3 /gtk2_ardour/route_ui.cc
parent5499bad8369a1ac7b0b1aa5ba95f27d4658182a2 (diff)
some tweaks for solo logic to get things working as they were before (correctly)
Diffstat (limited to 'gtk2_ardour/route_ui.cc')
-rw-r--r--gtk2_ardour/route_ui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc
index 1d5d8c731c..730cc05514 100644
--- a/gtk2_ardour/route_ui.cc
+++ b/gtk2_ardour/route_ui.cc
@@ -1116,7 +1116,7 @@ RouteUI::send_blink (bool onoff)
Gtkmm2ext::ActiveState
RouteUI::solo_active_state (boost::shared_ptr<Route> r)
{
- if (r->is_master() || r->is_monitor()) {
+ if (!r->can_solo()) {
return Gtkmm2ext::Off;
}
@@ -1207,7 +1207,7 @@ RouteUI::update_solo_display ()
/* some changes to solo status can affect mute display, so catch up
*/
- update_mute_display ();
+ update_mute_display ();
}
void