summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-02-25 19:54:58 +0100
committerPaul Davis <paul@linuxaudiosystems.com>2017-02-25 19:55:39 +0100
commit8c1e06a5e909e56cc8712d3c18f12a584d52f027 (patch)
tree5eaa8292591de033113217320d20b21d8d63d821
parent7d08584415332adf672f7619f0d3970e572017be (diff)
prevent double-emission of PresentationInfo::Change when making mixer-view selection set changes
-rw-r--r--gtk2_ardour/route_processor_selection.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk2_ardour/route_processor_selection.cc b/gtk2_ardour/route_processor_selection.cc
index ab512d3bb1..836e63fcfe 100644
--- a/gtk2_ardour/route_processor_selection.cc
+++ b/gtk2_ardour/route_processor_selection.cc
@@ -127,6 +127,7 @@ RouteProcessorSelection::remove (AxisView* r)
void
RouteProcessorSelection::set (AxisView* r)
{
+ PresentationInfo::ChangeSuspender cs;
clear_routes ();
add (r);
}