diff options
author | flow <flowlnlnln@gmail.com> | 2022-10-08 14:29:14 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-08 14:29:14 -0300 |
commit | e0ef09dfe1415a0e34a91f8e950cd5860ea362af (patch) | |
tree | c4f0faaf52344d66c97cb54c816b894c429080c9 | |
parent | 787234a53ad13844b73ff2d545b2f519af2f971b (diff) | |
parent | 6ebc9abb8090cdbf78ab71f071ccd1f495eb7c0e (diff) | |
download | PrismLauncher-e0ef09dfe1415a0e34a91f8e950cd5860ea362af.tar.gz PrismLauncher-e0ef09dfe1415a0e34a91f8e950cd5860ea362af.tar.bz2 PrismLauncher-e0ef09dfe1415a0e34a91f8e950cd5860ea362af.zip |
Merge pull request #1183 from Scrumplex/fix-capabilities-first-run
-rw-r--r-- | launcher/Application.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index e08ea7f4..968dd08e 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -859,12 +859,13 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv) qDebug() << "<> Application theme set."; } + updateCapabilities(); + if(createSetupWizard()) { return; } - updateCapabilities(); performMainStartupAction(); } |