mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
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:
parent
f2ceb5c340
commit
b0a59ba6da
1 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue