summaryrefslogtreecommitdiffstats
path: root/dialog.cpp
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2015-06-11 17:32:38 +0200
committerAnne Jan Brouwer <brouwer@annejan.com>2015-06-11 17:32:38 +0200
commitcecb35dffd88c566e2b90609ce1fe81d28f67a6c (patch)
tree03d61f0a538e33e59a340c84588514038f9f1777 /dialog.cpp
parenta3167fa986a4b733118853b984497e5a76161bda (diff)
parentb36b79153b73606261018bfbe1b7395c2ecf54fb (diff)
Merge pull request #52 from IJHack/develop
Right click actions and many many small fixes.
Diffstat (limited to 'dialog.cpp')
-rw-r--r--dialog.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/dialog.cpp b/dialog.cpp
index 4b7de9a7..721840ed 100644
--- a/dialog.cpp
+++ b/dialog.cpp
@@ -510,7 +510,9 @@ void Dialog::wizard()
//qDebug() << names;
if (QFile(gpg).exists() && names.empty()) {
KeygenDialog d(this);
- d.exec();
+ if (!d.exec()) {
+ return;
+ }
}
QString passStore = ui->storePath->text();