Browse Source

Projucer: Re-scan module paths in handleAsyncUpdate() when the message loop has started to fix an assertion in File::getLinkedTarget() on Windows

tags/2021-05-28
ed 7 years ago
parent
commit
8c90f08cf4
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      extras/Projucer/Source/Application/jucer_Application.cpp

+ 3
- 3
extras/Projucer/Source/Application/jucer_Application.cpp View File

@@ -136,9 +136,6 @@ void ProjucerApplication::initialiseBasics()
ImageCache::setCacheTimeout (30 * 1000);
icons.reset (new Icons());
tooltipWindow.setMillisecondsBeforeTipAppears (1200);
rescanJUCEPathModules();
rescanUserPathModules();
}
bool ProjucerApplication::initialiseLogger (const char* filePrefix)
@@ -165,6 +162,9 @@ void ProjucerApplication::handleAsyncUpdate()
if (licenseController != nullptr)
licenseController->startWebviewIfNeeded();
rescanJUCEPathModules();
rescanUserPathModules();
#if JUCE_MAC
PopupMenu extraAppleMenuItems;
createExtraAppleMenuItems (extraAppleMenuItems);


Loading…
Cancel
Save