diff options
author | Saturneric <[email protected]> | 2021-07-04 19:17:53 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-07-04 19:17:53 +0000 |
commit | fe2f448d517bb0f7d37c22fe99b2bd13ef1a61c3 (patch) | |
tree | 952ad3bc8cb5f76c0d1e02792a62a3825ef6fdf0 /src/ui/KeyServerImportDialog.cpp | |
parent | Adjust and improve the basic settings page (diff) | |
parent | Update Github Action Files. (diff) | |
download | GpgFrontend-fe2f448d517bb0f7d37c22fe99b2bd13ef1a61c3.tar.gz GpgFrontend-fe2f448d517bb0f7d37c22fe99b2bd13ef1a61c3.zip |
Merge branch 'main' into develop
Diffstat (limited to '')
-rw-r--r-- | src/ui/KeyServerImportDialog.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ui/KeyServerImportDialog.cpp b/src/ui/KeyServerImportDialog.cpp index 1999b443..ec740691 100644 --- a/src/ui/KeyServerImportDialog.cpp +++ b/src/ui/KeyServerImportDialog.cpp @@ -60,7 +60,6 @@ KeyServerImportDialog::KeyServerImportDialog(GpgME::GpgContext *ctx, KeyList *ke waitingBar = new QProgressBar(); waitingBar->setVisible(false); waitingBar->setRange(0, 0); - waitingBar->setFixedHeight(24); waitingBar->setFixedWidth(200); // Layout for messagebox @@ -100,7 +99,7 @@ KeyServerImportDialog::KeyServerImportDialog(GpgME::GpgContext *ctx, KeyList *ke this->setWindowTitle(tr("Import Keys from Keyserver")); if(automatic) { - this->setFixedSize(200, 42); + this->setFixedSize(240, 42); } else { // Restore window size & location if (this->settings.value("ImportKeyFromServer/setWindowSize").toBool()) { @@ -121,8 +120,6 @@ KeyServerImportDialog::KeyServerImportDialog(GpgME::GpgContext *ctx, KeyList *ke } } - - this->setModal(true); } |