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.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/gtk2_ardour/plugin_ui.cc b/gtk2_ardour/plugin_ui.cc
index ceb31561cd..06d2a04125 100644
--- a/gtk2_ardour/plugin_ui.cc
+++ b/gtk2_ardour/plugin_ui.cc
@@ -57,7 +57,6 @@
#include "gui_thread.h"
#include "public_editor.h"
#include "keyboard.h"
-#include "eq_gui.h"
#include "i18n.h"
@@ -114,14 +113,16 @@ PluginUIWindow::PluginUIWindow (Gtk::Window* win, boost::shared_ptr<PluginInsert
GenericPluginUI* pu = new GenericPluginUI (insert, scrollable);
_pluginui = pu;
-
+ add( *pu );
+
+ /*
Gtk::HBox *hbox = new Gtk::HBox();
hbox->pack_start( *pu);
// TODO: this should be nicer
- hbox->pack_start( *manage(new PluginEqGui(insert)));
+ hbox->pack_start( eqgui_bin );
add (*manage(hbox));
-
+ */
set_wmclass (X_("ardour_plugin_editor"), "Ardour");