summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-05-06 20:41:53 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-05-06 20:41:53 +0000
commitb0a59ba6daf92a91730a26728b50f6085e65d6e6 (patch)
treed297698a606fd4d9e3ee87181e18552834b4d6d2 /gtk2_ardour/route_ui.cc
parentf2ceb5c3404bb3e7f4ccc5bb3f2236f593775d73 (diff)
show half-lit state for !self-soloed
git-svn-id: svn://localhost/ardour2/branches/3.0@7073 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/route_ui.cc')
-rw-r--r--gtk2_ardour/route_ui.cc6
1 files changed, 5 insertions, 1 deletions
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<Route> r)
}
if (r->soloed()) {
- return 1;
+ if (!r->self_soloed()) {
+ return 3;
+ } else {
+ return 1;
+ }
} else {
return 0;
}