mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 16:24:57 +01:00
fix thinko-typo in SoloControl::soloed_by_others()
This commit is contained in:
parent
c10e57129d
commit
316e9409d0
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ class LIBARDOUR_API SoloControl : public SlavableAutomationControl
|
||||||
return self_soloed() || get_masters_value ();
|
return self_soloed() || get_masters_value ();
|
||||||
}
|
}
|
||||||
bool soloed_by_others () const {
|
bool soloed_by_others () const {
|
||||||
return _soloed_by_others_downstream || _soloed_by_others_downstream || get_masters_value ();
|
return _soloed_by_others_downstream || _soloed_by_others_upstream || get_masters_value ();
|
||||||
}
|
}
|
||||||
uint32_t soloed_by_others_upstream () const {
|
uint32_t soloed_by_others_upstream () const {
|
||||||
return _soloed_by_others_upstream;
|
return _soloed_by_others_upstream;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue