diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-03-27 19:01:53 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-03-27 19:01:53 -0700 |
commit | a0045ece075d5caf5d0b6982002dd6bd845ddf0f (patch) | |
tree | dfe725a959d5997281c0c9051d9cfd120d7cd6e3 /launcher/Application.cpp | |
parent | ef50e5595e2b4c50a0f25534ca71e6d898c5b090 (diff) | |
download | PrismLauncher-a0045ece075d5caf5d0b6982002dd6bd845ddf0f.tar.gz PrismLauncher-a0045ece075d5caf5d0b6982002dd6bd845ddf0f.tar.bz2 PrismLauncher-a0045ece075d5caf5d0b6982002dd6bd845ddf0f.zip |
feat: add setting to watch recursively
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/Application.cpp')
-rw-r--r-- | launcher/Application.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index 879af535..1fc31549 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -517,6 +517,7 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv) m_settings->registerSetting({"CentralModsDir", "ModsDir"}, "mods"); m_settings->registerSetting("IconsDir", "icons"); m_settings->registerSetting("DownloadsDir", QStandardPaths::writableLocation(QStandardPaths::DownloadLocation)); + m_settings->registerSetting("DownloadsDirWatchRecursive", false); // Editors m_settings->registerSetting("JsonEditor", QString()); |