summaryrefslogtreecommitdiff
path: root/gtk2_ardour/vst_plugin_ui.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-23 17:48:10 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-23 17:48:10 +0000
commit013b31f1bb17dd54c41aafc879984d9d2b17633d (patch)
treedd03c3786163866796142d4c9c605deb28e0d7dc /gtk2_ardour/vst_plugin_ui.cc
parent0a66ccc3bbdbb9e1d185133495e023c248b65bf6 (diff)
Don't fix size of preset combo any more. Comment what
widgets the PlugUIBase makes available for subclasses. Give up on trying to report when a VST plugin's settings have been modified from a preset, since I think it is impossible to do cleanly (you set the preset, then at some point after that the plugin tells you that values have changed using the same mechanism that it uses to report normal user-initiated changes). git-svn-id: svn://localhost/ardour2/branches/3.0@10798 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/vst_plugin_ui.cc')
-rw-r--r--gtk2_ardour/vst_plugin_ui.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/vst_plugin_ui.cc b/gtk2_ardour/vst_plugin_ui.cc
index 758c38cd8f..4c1fc6eade 100644
--- a/gtk2_ardour/vst_plugin_ui.cc
+++ b/gtk2_ardour/vst_plugin_ui.cc
@@ -34,7 +34,7 @@ VSTPluginUI::VSTPluginUI (boost::shared_ptr<ARDOUR::PluginInsert> insert, boost:
box->pack_end (delete_button, false, false);
box->pack_end (save_button, false, false);
box->pack_end (add_button, false, false);
- box->pack_end (_preset_box, false, false);
+ box->pack_end (_preset_combo, false, false);
if (!insert->active ()) {
bypass_button.set_active_state (Gtkmm2ext::Active);