From 149adbd1d6cc3e4611fa00c3061d3ba9b83abf31 Mon Sep 17 00:00:00 2001 From: arthomnix Date: Sun, 20 Nov 2022 11:45:34 +0000 Subject: [PATCH] NOISSUE Load ShowGameTimeHours setting correctly on settings page Bugfix for #4964 --- launcher/ui/pages/global/MinecraftPage.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/launcher/ui/pages/global/MinecraftPage.cpp b/launcher/ui/pages/global/MinecraftPage.cpp index 3815d912..8491e988 100644 --- a/launcher/ui/pages/global/MinecraftPage.cpp +++ b/launcher/ui/pages/global/MinecraftPage.cpp @@ -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()); }