From b0a59ba6daf92a91730a26728b50f6085e65d6e6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 6 May 2010 20:41:53 +0000 Subject: [PATCH] show half-lit state for !self-soloed git-svn-id: svn://localhost/ardour2/branches/3.0@7073 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/route_ui.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; }