1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Ensure that app is fully initialised before opening windows

This commit is contained in:
ed 2020-04-30 09:36:36 +01:00
parent f60ca1fb8d
commit 720801219a
2 changed files with 2 additions and 1 deletions

View file

@ -1195,6 +1195,7 @@ void ProjucerApplication::askUserToOpenFile()
bool ProjucerApplication::openFile (const File& file)
{
handleUpdateNowIfNeeded();
return mainWindowList.openFile (file);
}

View file

@ -74,7 +74,7 @@ public:
AvailableModulesList& getJUCEPathModulesList() { return jucePathModulesList; }
AvailableModulesList& getUserPathsModulesList() { return userPathsModulesList; }
LicenseController& getLicenseController() { return *licenseController; }
LicenseController& getLicenseController() { return *licenseController; }
bool isAutomaticVersionCheckingEnabled() const;
void setAutomaticVersionCheckingEnabled (bool shouldBeEnabled);