diff options
-rw-r--r-- | TODO | 4 | ||||
-rw-r--r-- | keyimportdetaildialog.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -39,6 +39,7 @@ Release 0.3.2 - always activate next button - add messagebox for succesful import of settings from old gpg4usb [DONE] - app is not in the foreground after importing config from older gpg4usb + - before restart maybesave should be called on mainwindow - Update Qt to 4.8 [DONE] - add Qt language files for Qt locales - investigate in adding a offline help system [DONE] @@ -48,11 +49,10 @@ Release 0.3.2 - remove menu and logo from subpages [DONE] - docs for sign&verify - dropdown from menubar instead of dialog for import [DONE] - - resize dropdown button, cause letter are cut at the bottom + - resize dropdown button, cause letter are cut at the bottom [DONE] - Change file encryption to single dialog for en- and decryption [DONE] - change docu on file de- and encryption - replace qDebug messages with tr() by messagebox (?) - BUGS: - import key toolbar dropdown shows text, even if only icon should be shown [DONE] diff --git a/keyimportdetaildialog.cpp b/keyimportdetaildialog.cpp index ad24ecc..e8bf451 100644 --- a/keyimportdetaildialog.cpp +++ b/keyimportdetaildialog.cpp @@ -47,7 +47,7 @@ KeyImportDetailDialog::KeyImportDetailDialog(GpgME::GpgContext* ctx, GpgImportIn this->setWindowTitle(tr("Key import details")); this->resize(QSize(600,300)); this->setModal(true); - this->show(); + this->exec(); } void KeyImportDetailDialog::createGeneralInfoBox() |