1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Introjucer bugfix: don't write orientation flag into the jucer file if the exporter is OS X.

This commit is contained in:
Timur Doumler 2016-03-14 12:31:53 +00:00
parent 30cc5dcb76
commit cf4afd2cb8

View file

@ -56,8 +56,11 @@ public:
initialiseDependencyPathValues();
if (getScreenOrientationValue().toString().isEmpty())
getScreenOrientationValue() = "portraitlandscape";
if (iOS)
{
if (getScreenOrientationValue().toString().isEmpty())
getScreenOrientationValue() = "portraitlandscape";
}
}
static XCodeProjectExporter* createForSettings (Project& project, const ValueTree& settings)