Browse Source

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

tags/2021-05-28
jules 7 years ago
parent
commit
5d54e80df8
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      extras/Projucer/Source/Application/jucer_Application.cpp

+ 2
- 1
extras/Projucer/Source/Application/jucer_Application.cpp 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);


Loading…
Cancel
Save