Merge pull request #4985 from arthomnix/feature/playtime-format-customisation

NOISSUE Load ShowGameTimeHours setting correctly on settings page
This commit is contained in:
Petr Mrázek 2022-11-20 13:08:52 +01:00 committed by GitHub
commit 8bced9da83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,4 +89,5 @@ void MinecraftPage::loadSettings()
ui->showGameTime->setChecked(s->get("ShowGameTime").toBool());
ui->showGlobalGameTime->setChecked(s->get("ShowGlobalGameTime").toBool());
ui->recordGameTime->setChecked(s->get("RecordGameTime").toBool());
ui->showGameTimeHours->setChecked(s->get("ShowGameTimeHours").toBool());
}