1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-21 01:24:21 +00:00

PluginList: Fix revealing plugins

This commit is contained in:
reuk 2020-10-27 12:50:22 +00:00
parent 6811242371
commit d236964410

View file

@ -262,7 +262,7 @@ static bool canShowFolderForPlugin (KnownPluginList& list, int index)
static void showFolderForPlugin (KnownPluginList& list, int index)
{
if (canShowFolderForPlugin (list, index))
File (list.getTypes()[index].fileOrIdentifier).getParentDirectory().startAsProcess();
File (list.getTypes()[index].fileOrIdentifier).revealToUser();
}
void PluginListComponent::removeMissingPlugins()