From 383850d3297a7856f58e56acb510d7a9b03d3b43 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 10 Nov 2019 22:33:46 +0100 Subject: [PATCH] Prefs > Plugins > Scan should discover new plugins First argument is `cache_only`. `false` means to discover news ones. --- gtk2_ardour/rc_option_editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index 2a8ddf2df0..261537d8ff 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -4098,7 +4098,7 @@ RCOptionEditor::parameter_changed (string const & p) void RCOptionEditor::plugin_scan_refresh () { /* first argument says discover new plugins, second means be verbose */ - PluginScanDialog psd (true, true); + PluginScanDialog psd (false, true); psd.start (); }