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

Projucer: Re-scan module paths immediately on start up

This commit is contained in:
ed 2018-10-16 10:25:25 +01:00
parent e07782ff38
commit 90765fa52a
2 changed files with 4 additions and 4 deletions

View file

@ -135,7 +135,7 @@ static void addAllModulesInSubfoldersRecursively (const File& path, int depth, M
if (job->shouldExit())
return;
auto childPath = iter.getFile().getLinkedTarget();
auto childPath = iter.getFile();
if (! tryToAddModuleFromFolder (childPath, list))
addAllModulesInSubfoldersRecursively (childPath, depth - 1, list);