mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
fix issue with solo-in-place
Monitor outs cannot be muted by other soloing. Duh.
This commit is contained in:
parent
39adc85e29
commit
bd80b2f144
1 changed files with 1 additions and 1 deletions
|
|
@ -440,7 +440,7 @@ public:
|
|||
return _mute_control;
|
||||
}
|
||||
|
||||
bool can_be_muted_by_others () const { return !is_master(); }
|
||||
bool can_be_muted_by_others () const { return can_solo(); }
|
||||
bool muted () const { return _mute_control->muted(); }
|
||||
bool muted_by_masters () const { return _mute_control->muted_by_masters(); }
|
||||
bool muted_by_self () const { return _mute_control->muted_by_self(); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue