diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc index 58d5a721b5..f579760f60 100644 --- a/gtk2_ardour/route_ui.cc +++ b/gtk2_ardour/route_ui.cc @@ -716,7 +716,11 @@ RouteUI::solo_visual_state (boost::shared_ptr r) } if (r->soloed()) { - return 1; + if (!r->self_soloed()) { + return 3; + } else { + return 1; + } } else { return 0; }