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:
parent
4bb2f83203
commit
94d5ca881c
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue