1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 08:09:32 +02:00

Don't scan AudioUnits in fast check of plug-in validity.

This commit is contained in:
James Crook 2017-02-07 11:57:44 +00:00
parent 5809499cfc
commit 085489f7e2

View File

@ -191,8 +191,10 @@ bool AudioUnitEffectsModule::RegisterPlugin(PluginManagerInterface & pm, const w
}
bool AudioUnitEffectsModule::IsPluginValid(
const wxString & path, bool /* bFast */)
const wxString & path, bool bFast)
{
if( bFast )
return true;
wxString name;
return FindAudioUnit(path, name) != NULL;
}