fix meter(s) when mixer-strip is switched to AuxSend
[ardour.git] / gtk2_ardour / ardour_dialog.cc
index c8a25f187471895575b7a0c213fa10b40808d864..3690ee023bbe545fa7cb59016f478f0507ad5adc 100644 (file)
@@ -27,6 +27,7 @@
 #include "keyboard.h"
 #include "splash.h"
 #include "utils.h"
+#include "window_manager.h"
 
 using namespace std;
 using namespace Gtk;
@@ -34,6 +35,7 @@ using namespace Gtkmm2ext;
 
 ArdourDialog::ArdourDialog (string title, bool modal, bool use_seperator)
        : Dialog (title, modal, use_seperator)
+       , proxy (0)
         , _splash_pushed (false)
 {
        init ();
@@ -57,6 +59,7 @@ ArdourDialog::~ArdourDialog ()
                         spl->pop_front();
                 }
         }
+       WM::Manager::instance().remove (proxy);
 }
 
 bool
@@ -115,11 +118,14 @@ ArdourDialog::init ()
 
        set_type_hint (Gdk::WINDOW_TYPE_HINT_DIALOG);
 
-       Gtk::Window* parent = WindowManager::instance().transient_parent();
+       Gtk::Window* parent = WM::Manager::instance().transient_parent();
 
        if (parent) {
                set_transient_for (*parent);
        }
 
        ARDOUR_UI::CloseAllDialogs.connect (sigc::bind (sigc::mem_fun (*this, &ArdourDialog::response), RESPONSE_CANCEL));
+
+       proxy = new WM::ProxyTemporary (get_title(), this);
+       WM::Manager::instance().register_window (proxy);
 }