summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/solo_control.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-07-26 21:47:04 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-26 21:47:04 -0400
commit316e9409d083e04eb521fd740664a30bdbdf645c (patch)
tree5f022cfe5672e7bb452c0f83341807771a0f820e /libs/ardour/ardour/solo_control.h
parentc10e57129dd7d6f6c7cb4ea819c11799c4ff6441 (diff)
fix thinko-typo in SoloControl::soloed_by_others()
Diffstat (limited to 'libs/ardour/ardour/solo_control.h')
-rw-r--r--libs/ardour/ardour/solo_control.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/ardour/solo_control.h b/libs/ardour/ardour/solo_control.h
index 89aa16d022..3f0f522fc3 100644
--- a/libs/ardour/ardour/solo_control.h
+++ b/libs/ardour/ardour/solo_control.h
@@ -72,7 +72,7 @@ class LIBARDOUR_API SoloControl : public SlavableAutomationControl
return self_soloed() || get_masters_value ();
}
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 {
return _soloed_by_others_upstream;