13
0

don't show plugin GUI when renaming tracks/busses

ProcessorBox::route_property_changed() iterates over existing windows
and hit a "show_all".
This commit is contained in:
Robin Gareus 2016-04-19 18:24:35 +02:00
parent c9dedc567d
commit 0b4b0b19bc

View File

@ -4252,8 +4252,8 @@ ProcessorWindowProxy::get (bool create)
if (_window) { if (_window) {
setup (); setup ();
} }
_window->show_all ();
} }
_window->show_all ();
return _window; return _window;
} }
@ -4315,9 +4315,8 @@ PluginPinWindowProxy::get (bool create)
if (aw) { if (aw) {
aw->set_session (_session); aw->set_session (_session);
} }
_window->show_all ();
} }
_window->show_all ();
return _window; return _window;
} }