summaryrefslogtreecommitdiff
path: root/gtk2_ardour/generic_pluginui.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-08-20 23:45:49 +0200
committerRobin Gareus <robin@gareus.org>2019-08-20 23:45:49 +0200
commita5e2012ead9b6bbe2f27c449d3f28591ec83483c (patch)
treea612328e805383c181ec700756fe2506ea972216 /gtk2_ardour/generic_pluginui.cc
parent2d4eb7d505d85ffff2cd25251623599583f83c41 (diff)
Consistent preset layout
Use the same order as AU, VST, LV2 GUIs. Show the "modified" asterisk left of the preset-dropdown. This avoids a blank space between the dropdown and the Add, Save, Delete buttons.
Diffstat (limited to 'gtk2_ardour/generic_pluginui.cc')
-rw-r--r--gtk2_ardour/generic_pluginui.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/generic_pluginui.cc b/gtk2_ardour/generic_pluginui.cc
index 871c8d13f7..8a5207da73 100644
--- a/gtk2_ardour/generic_pluginui.cc
+++ b/gtk2_ardour/generic_pluginui.cc
@@ -110,8 +110,8 @@ GenericPluginUI::GenericPluginUI (boost::shared_ptr<PluginInsert> pi, bool scrol
smaller_hbox->pack_start (latency_button, false, false, 4);
smaller_hbox->pack_start (pin_management_button, false, false, 4);
- smaller_hbox->pack_start (_preset_combo, false, false);
smaller_hbox->pack_start (_preset_modified, false, false);
+ smaller_hbox->pack_start (_preset_combo, false, false);
smaller_hbox->pack_start (add_button, false, false);
smaller_hbox->pack_start (save_button, false, false);
smaller_hbox->pack_start (delete_button, false, false);