summaryrefslogtreecommitdiff
path: root/gtk2_ardour/au_pluginui.mm
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-02-28 08:04:14 +0100
committerRobin Gareus <robin@gareus.org>2015-02-28 08:04:14 +0100
commit3c3586a4e1d362e0ce3b0c877e83911cd89383a9 (patch)
tree5268878c602b7799fcd117cf8953e5858a69ad52 /gtk2_ardour/au_pluginui.mm
parent60c39849cf70aedff3797d5d81921ed16d8cf43a (diff)
AU presets: allow to save & directly use.
Diffstat (limited to 'gtk2_ardour/au_pluginui.mm')
-rw-r--r--gtk2_ardour/au_pluginui.mm7
1 files changed, 7 insertions, 0 deletions
diff --git a/gtk2_ardour/au_pluginui.mm b/gtk2_ardour/au_pluginui.mm
index 2dc468e500..2a4ab747d4 100644
--- a/gtk2_ardour/au_pluginui.mm
+++ b/gtk2_ardour/au_pluginui.mm
@@ -153,8 +153,15 @@ AUPluginUI::AUPluginUI (boost::shared_ptr<PluginInsert> insert)
smaller_hbox->set_spacing (6);
smaller_hbox->pack_start (preset_label, false, false, 4);
+ smaller_hbox->pack_start (_preset_modified, false, false);
smaller_hbox->pack_start (_preset_combo, false, false);
+ smaller_hbox->pack_start (add_button, false, false);
+#if 0
+ /* Ardour does not currently allow to overwrite existing presets
+ * see save_property_list() in audio_unit.cc
+ */
smaller_hbox->pack_start (save_button, false, false);
+#endif
#if 0
/* one day these might be useful with an AU plugin, but not yet */
smaller_hbox->pack_start (automation_mode_label, false, false);