Browse Source

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

tags/2021-05-28
Timur Doumler 10 years ago
parent
commit
cf4afd2cb8
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h

+ 5
- 2
extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h 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)


Loading…
Cancel
Save