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

Projucer: Reduced the recursion depth in the module scanning code to fix slow project load times

This commit is contained in:
ed 2018-07-24 16:53:53 +01:00
parent dc9a0b39b8
commit 6cb09350c7

View file

@ -174,7 +174,7 @@ void ModuleList::addAllModulesInFolder (const File& path)
{
if (! tryToAddModuleFromFolder (path))
{
int subfolders = 5;
int subfolders = 3;
addAllModulesInSubfoldersRecursively (path, subfolders);
}
}