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

Fix for bug #472

Ed's fix for bug #179 is now fine for all platforms since
duplicates are removed by the new plugin support.
This commit is contained in:
Leland Lucius 2015-05-04 00:04:07 -05:00
parent 4d0de66523
commit a107b04d5c

View File

@ -141,9 +141,8 @@ wxArrayString NyquistEffectsModule::FindPlugins(PluginManagerInterface & pm)
// Load .ny plug-ins
pm.FindFilesInPathList(wxT("*.ny"), pathList, files);
#ifdef __WXGTK__
// LLL: Works for all platform with new plugin support (dups are removed)
pm.FindFilesInPathList(wxT("*.NY"), pathList, files); // Ed's fix for bug 179
#endif
return files;
}