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

Projucer: Fixed a bug where user modules would always show as missing when using the global path

This commit is contained in:
ed 2017-11-16 12:24:16 +00:00
parent 4bb2f83203
commit 94d5ca881c

View file

@ -707,7 +707,7 @@ File EnabledModuleList::getModuleFolder (const String& moduleID)
if (isJuceModule (moduleID))
return getModuleFolderFromPathIfItExists (getAppSettings().getStoredPath (Ids::defaultJuceModulePath).toString(), moduleID, project);
return findUserModuleFolder (moduleID, getAppSettings().getStoredPath (Ids::defaultUserModulePath).toString());
return findUserModuleFolder (getAppSettings().getStoredPath (Ids::defaultUserModulePath).toString(), moduleID);
}
auto paths = getAllPossibleModulePathsFromExporters (project);