diff --git a/launcher/settingsView/csettingsview_moc.cpp b/launcher/settingsView/csettingsview_moc.cpp index 302df1b9e..6b543526b 100644 --- a/launcher/settingsView/csettingsview_moc.cpp +++ b/launcher/settingsView/csettingsview_moc.cpp @@ -68,12 +68,13 @@ void CSettingsView::loadSettings() ui->comboBoxShowIntro->setCurrentIndex(settings["video"]["showIntro"].Bool()); #ifdef Q_OS_IOS - ui->comboBoxFullScreen->setCurrentIndex(true); + ui->comboBoxFullScreen->setCurrentIndex(1); ui->comboBoxFullScreen->setDisabled(true); #else - ui->comboBoxFullScreen->setCurrentIndex(settings["video"]["fullscreen"].Bool()); if (settings["video"]["realFullscreen"].Bool()) ui->comboBoxFullScreen->setCurrentIndex(2); + else + ui->comboBoxFullScreen->setCurrentIndex(settings["video"]["fullscreen"].Bool()); #endif ui->comboBoxFriendlyAI->setCurrentText(QString::fromStdString(settings["server"]["friendlyAI"].String()));