diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-14 20:39:53 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-14 20:39:53 +0300 |
commit | cebb4dd17ae9bfab35210250ab7a5484c644abb0 (patch) | |
tree | 0f0b3cc4a72be1b04dd4e05c16032e39bc1717c1 /launcher/Application.cpp | |
parent | 3becd4386bd49c9c91a72647de10faa16c6d700a (diff) | |
download | PrismLauncher-cebb4dd17ae9bfab35210250ab7a5484c644abb0.tar.gz PrismLauncher-cebb4dd17ae9bfab35210250ab7a5484c644abb0.tar.bz2 PrismLauncher-cebb4dd17ae9bfab35210250ab7a5484c644abb0.zip |
made the number of concurrent tasks configurable
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
Diffstat (limited to 'launcher/Application.cpp')
-rw-r--r-- | launcher/Application.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index 5aa9efc4..e427eebd 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -529,6 +529,8 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv) m_settings->registerSetting("MenuBarInsteadOfToolBar", false); + m_settings->registerSetting("NumberOfConcurrentTasks", 6); + QString defaultMonospace; int defaultSize = 11; #ifdef Q_OS_WIN32 |