]> git.0d.be Git - jack_mixer.git/commitdiff
Fix muted channel not being monitored
authorDaniel Sheeler <dsheeler@pobox.com>
Tue, 21 Jul 2020 08:42:39 +0000 (03:42 -0500)
committerDaniel Sheeler <dsheeler@pobox.com>
Tue, 21 Jul 2020 08:42:39 +0000 (03:42 -0500)
jack_mixer.py

index 3aa619b586e82b71a0800fd0bc8c841dd56a0105..fea0a3b8ed2e755e07b1eb8d8c20db5a7f3e4a00 100755 (executable)
@@ -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: