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

Made the projucer ignore command-line flags generated when running it in Xcode debug mode

This commit is contained in:
jules 2018-07-04 08:59:32 +01:00
parent 72266af609
commit 5d54e80df8

View file

@ -83,7 +83,8 @@ void ProjucerApplication::initialise (const String& commandLine)
initialiseBasics();
isRunningCommandLine = commandLine.isNotEmpty();
isRunningCommandLine = commandLine.isNotEmpty()
&& ! commandLine.startsWith ("-NSDocumentRevisionsDebugMode");
licenseController.reset (new LicenseController);
licenseController->addLicenseStatusChangedCallback (this);