]> git.0d.be Git - jack_mixer.git/commitdiff
Change output port name when input channel is renamed
authorArnout Engelen <arnouten@localhost.(none)>
Mon, 21 Dec 2009 23:26:05 +0000 (00:26 +0100)
committerArnout Engelen <arnouten@bird.(none)>
Tue, 29 Dec 2009 17:36:38 +0000 (18:36 +0100)
Fixes bug #14979: when channel is renamed only input port is renamed

channel.py

index c2e9b8c889485bc8d23799f22aeee95a94d93caa..2d2f1a8764ebff63095e4cf862ca9b1d50c10fd5 100644 (file)
@@ -60,6 +60,8 @@ class Channel(gtk.VBox, SerializedObject):
             self.label_name.set_text(name)
         if self.channel:
             self.channel.name = name
+        if self.post_fader_output_channel:
+            self.post_fader_output_channel.name = "%s Out" % name;
     channel_name = property(get_channel_name, set_channel_name)
 
     def realize(self):