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

Projucer: Moved a Thread::sleep() call that would be called every time a project was saved out of the Xcode exporter and only call it if saving and opening project in Xcode

This commit is contained in:
ed 2017-05-12 12:58:20 +01:00
parent c25727c64a
commit ff7cfb8824
6 changed files with 25 additions and 18 deletions

View file

@ -383,7 +383,7 @@ Result Project::saveProject (const File& file, bool isCommandLineApp)
const ScopedValueSetter<bool> vs (isSaving, true, false);
ProjectSaver saver (*this, file);
return saver.save (! isCommandLineApp);
return saver.save (! isCommandLineApp, shouldWaitAfterSaving);
}
Result Project::saveResourcesOnly (const File& file)