diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-04-08 07:26:56 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-04-08 07:26:56 -0700 |
commit | c56db0408bc7bb01e9807fd02858f27328ca6b79 (patch) | |
tree | dfb85530fefd23a8ca3f17088446ac480974a785 /launcher/ui/pages/global/LauncherPage.cpp | |
parent | 2321d9c065c363dac8304ab6c826289adb9c86a7 (diff) | |
download | PrismLauncher-c56db0408bc7bb01e9807fd02858f27328ca6b79.tar.gz PrismLauncher-c56db0408bc7bb01e9807fd02858f27328ca6b79.tar.bz2 PrismLauncher-c56db0408bc7bb01e9807fd02858f27328ca6b79.zip |
fix: load setting state with page. don't translate "..."
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/ui/pages/global/LauncherPage.cpp')
-rw-r--r-- | launcher/ui/pages/global/LauncherPage.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/launcher/ui/pages/global/LauncherPage.cpp b/launcher/ui/pages/global/LauncherPage.cpp index 51652320..816dde72 100644 --- a/launcher/ui/pages/global/LauncherPage.cpp +++ b/launcher/ui/pages/global/LauncherPage.cpp @@ -275,6 +275,7 @@ void LauncherPage::loadSettings() ui->modsDirTextBox->setText(s->get("CentralModsDir").toString()); ui->iconsDirTextBox->setText(s->get("IconsDir").toString()); ui->downloadsDirTextBox->setText(s->get("DownloadsDir").toString()); + ui->downloadsDirWatchRecursiveCheckBox->setChecked(s->get("DownloadsDirWatchRecursive").toBool()); QString sortMode = s->get("InstSortMode").toString(); |