summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-06-14 21:22:08 +0200
committerRobin Gareus <robin@gareus.org>2017-06-14 21:23:12 +0200
commit34abc2dc2d141023313f38fa96c8c304ecc666e3 (patch)
tree1ba3bc6723f2eb9e0c3ecf99416ff5264bfe0bf3
parent7c84deb2c41a7debee89380087e3ed5d017c31ee (diff)
Squelch error message when toggling master-bus visibility.
-rw-r--r--gtk2_ardour/mixer_ui.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc
index bd679e42e5..11bc38609b 100644
--- a/gtk2_ardour/mixer_ui.cc
+++ b/gtk2_ardour/mixer_ui.cc
@@ -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;
}