diff options
author | Saturneric <[email protected]> | 2022-06-01 15:12:20 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-06-01 15:12:20 +0000 |
commit | 769465f1496439c2e7de4ffa9460b1f4a0fe5c2d (patch) | |
tree | 65addaec57c7382e998b0b603d8a6ff736616eae /src/ui/GpgFrontendUIInit.cpp | |
parent | doc(manual): fix urls (diff) | |
download | GpgFrontend-769465f1496439c2e7de4ffa9460b1f4a0fe5c2d.tar.gz GpgFrontend-769465f1496439c2e7de4ffa9460b1f4a0fe5c2d.zip |
fix(ui): fix crash when start app.
Diffstat (limited to 'src/ui/GpgFrontendUIInit.cpp')
-rw-r--r-- | src/ui/GpgFrontendUIInit.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/GpgFrontendUIInit.cpp b/src/ui/GpgFrontendUIInit.cpp index 022f0748..fbc6877f 100644 --- a/src/ui/GpgFrontendUIInit.cpp +++ b/src/ui/GpgFrontendUIInit.cpp @@ -103,8 +103,9 @@ void InitGpgFrontendUI(QApplication* app) { // show the loading window waiting_dialog->setModal(true); - waiting_dialog->show(); waiting_dialog->setFocus(); + waiting_dialog->show(); + // new local event looper QEventLoop looper; |