summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/route.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-07-21 13:15:53 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-21 13:16:05 -0400
commitbd80b2f144c012669b56c83821e137be655acfe4 (patch)
treebe499aa479cebf299504fdc6f5b833ea364016d6 /libs/ardour/ardour/route.h
parent39adc85e296fa6f5149eab86ea315cdee56a2c8d (diff)
fix issue with solo-in-place
Monitor outs cannot be muted by other soloing. Duh.
Diffstat (limited to 'libs/ardour/ardour/route.h')
-rw-r--r--libs/ardour/ardour/route.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h
index f415e9725c..6c57263393 100644
--- a/libs/ardour/ardour/route.h
+++ b/libs/ardour/ardour/route.h
@@ -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(); }