From: Daniel Sheeler Date: Tue, 21 Jul 2020 08:42:39 +0000 (-0500) Subject: Fix muted channel not being monitored X-Git-Url: https://git.0d.be/?p=jack_mixer.git;a=commitdiff_plain;h=9336283ecb1e35ae1078dee20af6a570f5b617c2 Fix muted channel not being monitored --- diff --git a/jack_mixer.py b/jack_mixer.py index 3aa619b..fea0a3b 100755 --- a/jack_mixer.py +++ b/jack_mixer.py @@ -640,11 +640,10 @@ class JackMixer(SerializedObject): monitored_channel = property(get_monitored_channel, set_monitored_channel) def update_monitor(self, channel): - if self.monitored_channel is not channel: + if self._monitored_channel is not channel: return self.monitor_channel.volume = channel.channel.volume self.monitor_channel.balance = channel.channel.balance - self.monitor_channel.out_mute = channel.channel.out_mute if type(self.monitored_channel) is OutputChannel: # sync solo/muted channels for input_channel in self.channels: