X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=gtk2_ardour%2Frc_option_editor.cc;h=3569d939cc72580f83ca4b4498e2f8ae18423699;hb=d26aac90204a87e00ea3b2cb622a7f5729bfbc4a;hp=1c1783bd373f7b62aaedd3894d58014c78847cbf;hpb=80fa696564a2b261b6cf751ff61e4d885d3a2dc0;p=ardour.git diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index 1c1783bd37..3569d939cc 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -3194,6 +3194,16 @@ if (!ARDOUR::Profile->get_mixbus()) { new RcActionButton (_("Scan for Plugins"), sigc::mem_fun (*this, &RCOptionEditor::plugin_scan_refresh))); +#if (defined AUDIOUNIT_SUPPORT && defined MACVST_SUPPORT) + bo = new BoolOption ( + "", + _("Enable Mac VST support (requires restart or re-scan)"), + sigc::mem_fun (*_rc_config, &RCConfiguration::get_use_macvst), + sigc::mem_fun (*_rc_config, &RCConfiguration::set_use_macvst) + ); + add_option (_("Plugins/VST"), bo); +#endif + bo = new BoolOption ( "discover-vst-on-start", _("Scan for [new] VST Plugins on Application Start"), @@ -3661,6 +3671,8 @@ if (!ARDOUR::Profile->get_mixbus()) { add_option (_("Theme/Colors"), new ColorThemeManager); + Widget::show_all (); + //trigger some parameter-changed messages which affect widget-visibility or -sensitivity parameter_changed ("send-ltc"); parameter_changed ("sync-source");