summaryrefslogtreecommitdiff
path: root/libs/ardour/mute_master.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/mute_master.cc')
-rw-r--r--libs/ardour/mute_master.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/mute_master.cc b/libs/ardour/mute_master.cc
index 5a261fb44f..c0e5ca8368 100644
--- a/libs/ardour/mute_master.cc
+++ b/libs/ardour/mute_master.cc
@@ -88,22 +88,22 @@ MuteMaster::mute_gain_at (MutePoint mp) const
if (_soloed) {
gain = 1.0;
} else if (muted_by_self_at (mp)) {
- gain = Config->get_solo_mute_gain ();
+ gain = 0.0;
} else {
if (muted_by_others_at (mp)) {
- gain = 0.0;
+ gain = Config->get_solo_mute_gain ();
} else {
gain = 1.0;
}
}
} else {
if (muted_by_self_at (mp)) {
- gain = Config->get_solo_mute_gain ();
+ gain = 0.0;
} else if (_soloed) {
gain = 1.0;
} else {
if (muted_by_others_at (mp)) {
- gain = 0.0;
+ gain = Config->get_solo_mute_gain ();
} else {
gain = 1.0;
}