show half-lit state for !self-soloed

git-svn-id: svn://localhost/ardour2/branches/3.0@7073 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2010-05-06 20:41:53 +00:00
parent f2ceb5c340
commit b0a59ba6da

View File

@ -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;
}