summaryrefslogtreecommitdiff
path: root/gtk2_ardour/plugin_ui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/plugin_ui.cc')
-rw-r--r--gtk2_ardour/plugin_ui.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/gtk2_ardour/plugin_ui.cc b/gtk2_ardour/plugin_ui.cc
index 4c17923abe..455cea1364 100644
--- a/gtk2_ardour/plugin_ui.cc
+++ b/gtk2_ardour/plugin_ui.cc
@@ -89,6 +89,11 @@ PluginUIWindow::PluginUIWindow (
: parent (win)
, was_visible (false)
, _keyboard_focused (false)
+#ifdef AUDIOUNIT_SUPPORT
+ , pre_deactivate_x (-1)
+ , pre_deactivate_y (-1)
+#endif
+
{
bool have_gui = false;
@@ -341,11 +346,15 @@ PluginUIWindow::app_activated (bool)
if (yn) {
if (was_visible) {
_pluginui->activate ();
+ if (pre_deactivate_x >= 0) {
+ move (pre_deactivate_x, pre_deactivate_y);
+ }
present ();
was_visible = true;
}
} else {
was_visible = is_visible();
+ get_position (pre_deactivate_x, pre_deactivate_y);
hide ();
_pluginui->deactivate ();
}
@@ -783,3 +792,4 @@ PlugUIBase::preset_added_or_removed ()
update_preset_list ();
update_preset ();
}
+