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:
parent
dc9a0b39b8
commit
6cb09350c7
1 changed files with 1 additions and 1 deletions
|
|
@ -174,7 +174,7 @@ void ModuleList::addAllModulesInFolder (const File& path)
|
|||
{
|
||||
if (! tryToAddModuleFromFolder (path))
|
||||
{
|
||||
int subfolders = 5;
|
||||
int subfolders = 3;
|
||||
addAllModulesInSubfoldersRecursively (path, subfolders);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue