13
0

fix issue with solo-in-place

Monitor outs cannot be muted by other soloing. Duh.
This commit is contained in:
Paul Davis 2016-07-21 13:15:53 -04:00
parent 39adc85e29
commit bd80b2f144

View File

@ -440,7 +440,7 @@ public:
return _mute_control; 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 () const { return _mute_control->muted(); }
bool muted_by_masters () const { return _mute_control->muted_by_masters(); } bool muted_by_masters () const { return _mute_control->muted_by_masters(); }
bool muted_by_self () const { return _mute_control->muted_by_self(); } bool muted_by_self () const { return _mute_control->muted_by_self(); }