mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:49:56 +00:00
Fixing Skip Menu checkbox not working correctly
This commit is contained in:
parent
082e166fae
commit
dcc262ed91
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ bool Launcher::SettingsPage::loadSettings()
|
|||
languageComboBox->setCurrentIndex(index);
|
||||
|
||||
// Testing
|
||||
bool skipMenu = mGameSettings.value("skip-menu").toInt() == Qt::Checked;
|
||||
bool skipMenu = mGameSettings.value("skip-menu").toInt() == 1;
|
||||
if (skipMenu) {
|
||||
skipMenuCheckBox->setCheckState(Qt::Checked);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue