Recursively scan for MacVSTs

This commit is contained in:
Robin Gareus 2016-11-18 02:36:04 +01:00
parent c37d31054b
commit d624bac38e

View File

@ -1047,7 +1047,7 @@ PluginManager::mac_vst_discover_from_path (string path, bool cache_only)
vector<string> plugin_objects;
vector<string>::iterator x;
find_paths_matching_filter (plugin_objects, path, mac_vst_filter, 0, true, true, false);
find_paths_matching_filter (plugin_objects, path, mac_vst_filter, 0, true, true, true);
for (x = plugin_objects.begin(); x != plugin_objects.end (); ++x) {
ARDOUR::PluginScanMessage(_("MacVST"), *x, !cache_only && !cancelled());