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