summaryrefslogtreecommitdiff
path: root/gtk2_ardour/vst_pluginui.cc
diff options
context:
space:
mode:
authorSampo Savolainen <v2@iki.fi>2009-03-07 11:17:06 +0000
committerSampo Savolainen <v2@iki.fi>2009-03-07 11:17:06 +0000
commitbcd217ec8e11abcb3bc829251b6dc503d606aaeb (patch)
treebdb5d54aa6c7b1b46835acee2c8697dabbf520d7 /gtk2_ardour/vst_pluginui.cc
parente09c51251f1742ac5c61966b5dd8c5f61c567f69 (diff)
Improvements to the plugin eq gui:
- phase correction for analysis - move gui elements to a more common location so that it's available for VSTs (needs packing in each PluginUI derived class though) git-svn-id: svn://localhost/ardour2/branches/3.0@4745 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/vst_pluginui.cc')
-rw-r--r--gtk2_ardour/vst_pluginui.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/vst_pluginui.cc b/gtk2_ardour/vst_pluginui.cc
index 0ee7956f53..99c7a1b82b 100644
--- a/gtk2_ardour/vst_pluginui.cc
+++ b/gtk2_ardour/vst_pluginui.cc
@@ -40,11 +40,14 @@ VSTPluginUI::VSTPluginUI (boost::shared_ptr<PluginInsert> pi, boost::shared_ptr<
preset_box.pack_end (bypass_button, false, false, 10);
preset_box.pack_end (save_button, false, false);
preset_box.pack_end (preset_combo, false, false);
+ preset_box.pack_end (eqgui_toggle, false, false);
+
bypass_button.set_active (!insert->active());
pack_start (preset_box, false, false);
pack_start (socket, true, true);
+ pack_start (plugin_eq_bin, true, true);
}
VSTPluginUI::~VSTPluginUI ()