summaryrefslogtreecommitdiff
path: root/gtk2_ardour/processor_box.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-19 18:24:35 +0200
committerRobin Gareus <robin@gareus.org>2016-04-19 18:24:35 +0200
commit0b4b0b19bcc2ba74698cd3868c5998afb09dcc68 (patch)
tree8af99e7fdb5f1b24933182aa025fe020bfac2aa8 /gtk2_ardour/processor_box.cc
parentc9dedc567d26fd197fda311d90ea040bc1df9c9e (diff)
don't show plugin GUI when renaming tracks/busses
ProcessorBox::route_property_changed() iterates over existing windows and hit a "show_all".
Diffstat (limited to 'gtk2_ardour/processor_box.cc')
-rw-r--r--gtk2_ardour/processor_box.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc
index a95c462bd4..60aee0ff62 100644
--- a/gtk2_ardour/processor_box.cc
+++ b/gtk2_ardour/processor_box.cc
@@ -4252,8 +4252,8 @@ ProcessorWindowProxy::get (bool create)
if (_window) {
setup ();
}
+ _window->show_all ();
}
- _window->show_all ();
return _window;
}
@@ -4315,9 +4315,8 @@ PluginPinWindowProxy::get (bool create)
if (aw) {
aw->set_session (_session);
}
+ _window->show_all ();
}
-
- _window->show_all ();
return _window;
}