aboutsummaryrefslogtreecommitdiffstats
path: root/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mainwindow.cpp')
-rw-r--r--mainwindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp
index 1813bdc..5449246 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -75,7 +75,8 @@ MainWindow::MainWindow()
// Show wizard, if the don't show wizard message box wasn't checked
// and keylist doesn't contain a private key
QSettings settings;
- if (settings.value("wizard/showWizard",true).toBool() && !mKeyList->containsPrivateKeys()) {
+ //if (settings.value("wizard/showWizard",true).toBool() && !mKeyList->containsPrivateKeys()) {
+ if (settings.value("wizard/showWizard",true).toBool() || !settings.value("wizard/next").isNull()) {
startWizard();
}
}