* fixed jitter problems for midi clock and removed superfluous UI elements
[ardour.git] / gtk2_ardour / plugin_ui.cc
index a91a5bf9d1f875897d37c55b42852e855b6c4755..06d2a04125f1794be2eb783df4e789a5575818f0 100644 (file)
@@ -27,6 +27,7 @@
 #include <pbd/failed_constructor.h>
 
 #include <gtkmm/widget.h>
+#include <gtkmm/box.h>
 #include <gtkmm2ext/click_box.h>
 #include <gtkmm2ext/fastmeter.h>
 #include <gtkmm2ext/barcontroller.h>
@@ -112,8 +113,17 @@ PluginUIWindow::PluginUIWindow (Gtk::Window* win, boost::shared_ptr<PluginInsert
                GenericPluginUI*  pu  = new GenericPluginUI (insert, scrollable);
                
                _pluginui = pu;
-               add (*pu);
+               add( *pu );
+
+               /*
+               Gtk::HBox *hbox = new Gtk::HBox();
+               hbox->pack_start( *pu);
+               // TODO: this should be nicer
+               hbox->pack_start( eqgui_bin );
                
+               add (*manage(hbox));
+               */
+
                set_wmclass (X_("ardour_plugin_editor"), "Ardour");
 
                signal_map_event().connect (mem_fun (*pu, &GenericPluginUI::start_updating));