diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-03-27 20:56:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-27 20:56:04 +0200 |
commit | 87cf38a3770dd7f55fbae79ca3a4958155289af7 (patch) | |
tree | 05f150ea145c8fac548f7ac1a4ca8038b7d9df30 /launcher/ui/pages/global/MinecraftPage.cpp | |
parent | 5e77b548b1550e6f3e592ca77ba606362b51ec6d (diff) | |
parent | ec6409914d07dce67f86522ff7f5015e5060fb7e (diff) | |
download | PrismLauncher-87cf38a3770dd7f55fbae79ca3a4958155289af7.tar.gz PrismLauncher-87cf38a3770dd7f55fbae79ca3a4958155289af7.tar.bz2 PrismLauncher-87cf38a3770dd7f55fbae79ca3a4958155289af7.zip |
Merge pull request #341 from dada513/develop
Diffstat (limited to 'launcher/ui/pages/global/MinecraftPage.cpp')
-rw-r--r-- | launcher/ui/pages/global/MinecraftPage.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/launcher/ui/pages/global/MinecraftPage.cpp b/launcher/ui/pages/global/MinecraftPage.cpp index 9abae425..f49f5a92 100644 --- a/launcher/ui/pages/global/MinecraftPage.cpp +++ b/launcher/ui/pages/global/MinecraftPage.cpp @@ -94,6 +94,7 @@ void MinecraftPage::applySettings() // Miscellaneous s->set("CloseAfterLaunch", ui->closeAfterLaunchCheck->isChecked()); + s->set("QuitAfterGameStop", ui->quitAfterGameStopCheck->isChecked()); } void MinecraftPage::loadSettings() @@ -113,6 +114,7 @@ void MinecraftPage::loadSettings() ui->recordGameTime->setChecked(s->get("RecordGameTime").toBool()); ui->closeAfterLaunchCheck->setChecked(s->get("CloseAfterLaunch").toBool()); + ui->quitAfterGameStopCheck->setChecked(s->get("QuitAfterGameStop").toBool()); } void MinecraftPage::retranslate() |