From 316e9409d083e04eb521fd740664a30bdbdf645c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 26 Jul 2016 21:47:04 -0400 Subject: [PATCH] fix thinko-typo in SoloControl::soloed_by_others() --- libs/ardour/ardour/solo_control.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;