diff options
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | wizard.cpp | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -29,6 +29,7 @@ Release 0.3.2 - only show one import detail dialog, when importing public/private keys - always activate next button - nextid is not called when clicking finish button + - add page for succesful import of settings from old gpg4usb (?) - BUG: cancel decryption on windows hangs programm -> possibly bug in gpgme [DONE] - option in settingsdialog for enabling steganographic operations [DONE] - minimal steganography option: remove or add pgp-headers on demand [DONE] @@ -45,8 +45,8 @@ Wizard::Wizard(GpgME::GpgContext *ctx, KeyMgmt *keyMgmt, QWidget *parent) setPixmap(QWizard::BannerPixmap, QPixmap(":/banner.png")); QSettings settings; - setStartId(settings.value("wizard/page", -1).toInt()); - settings.remove("wizard/page"); + setStartId(settings.value("wizard/nextPage", -1).toInt()); + settings.remove("wizard/nextPage"); connect(this, SIGNAL(accepted()), this, SLOT(wizardAccepted())); |