Squelch error message when toggling master-bus visibility.
authorRobin Gareus <robin@gareus.org>
Wed, 14 Jun 2017 19:22:08 +0000 (21:22 +0200)
committerRobin Gareus <robin@gareus.org>
Wed, 14 Jun 2017 19:23:12 +0000 (21:23 +0200)
gtk2_ardour/mixer_ui.cc

index bd679e42e505b0a06889491a26c6a4048c071f31..11bc38609bd8dfe2c8156c0a5c2628156ba80afb 100644 (file)
@@ -1699,6 +1699,10 @@ Mixer_UI::stripable_property_changed (const PropertyChange& what_changed, boost:
                }
        }
 
+       if (s->is_master ()) {
+               return;
+       }
+
        error << _("track display list item for renamed strip not found!") << endmsg;
 }