aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/WaitingDialog.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2023-12-03 13:01:27 +0000
committersaturneric <[email protected]>2023-12-03 13:01:27 +0000
commitd0602f09564d3d200b20e83a977315134ced842e (patch)
treeb9cd6f429983a0c9bce51e7fb711b894d634601b /src/ui/dialog/WaitingDialog.cpp
parentfeat: general improvements of aync execution and memory security (diff)
downloadGpgFrontend-d0602f09564d3d200b20e83a977315134ced842e.tar.gz
GpgFrontend-d0602f09564d3d200b20e83a977315134ced842e.zip
fix: slove issues in key/subkey generation
Diffstat (limited to '')
-rw-r--r--src/ui/dialog/WaitingDialog.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ui/dialog/WaitingDialog.cpp b/src/ui/dialog/WaitingDialog.cpp
index bfea0ee6..953622fc 100644
--- a/src/ui/dialog/WaitingDialog.cpp
+++ b/src/ui/dialog/WaitingDialog.cpp
@@ -28,7 +28,7 @@
#include "WaitingDialog.h"
-#include "dialog/GeneralDialog.h"
+#include "ui/dialog/GeneralDialog.h"
namespace GpgFrontend::UI {
@@ -53,6 +53,9 @@ WaitingDialog::WaitingDialog(const QString& title, QWidget* parent)
this->setAttribute(Qt::WA_DeleteOnClose);
this->setFixedSize(240, 42);
+ // move to a proper position
+ this->movePosition2CenterOfParent();
+
this->show();
}