From e07b3104bb23f4bb0812f680b9920105f9867d12 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 10 Mar 2021 17:55:35 +0100 Subject: [PATCH] Expose VST Micro Edit display option. --- gtk2_ardour/rc_option_editor.cc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index 1de7ba6474..209334b442 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -3742,7 +3742,14 @@ These settings will only take effect after %1 is restarted.\n\ vst3_path->set_note (_("Customizing VST3 paths is discouraged. Note that default VST3 paths as per specification are always searched, and need not be explicitly set.")); add_option (_("Plugins/VST"), vst3_path); - + // -> Appearance/Mixer ? + add_option (_("Plugins/VST"), + new BoolOption ( + "show-vst3-micro-edit-inline", + _("Automatically show 'Micro Edit' tagged controls on the mixer-strip"), + sigc::mem_fun (*_rc_config, &RCConfiguration::get_show_vst3_micro_edit_inline), + sigc::mem_fun (*_rc_config, &RCConfiguration::set_show_vst3_micro_edit_inline) + )); #if (defined WINDOWS_VST_SUPPORT || defined MACVST_SUPPORT || defined LXVST_SUPPORT) add_option (_("Plugins/VST"), new OptionEditorHeading (_("VST2/VST3")));