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:
parent
72266af609
commit
5d54e80df8
1 changed files with 2 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue