From c14852cbd71b646f4ae077789299338e172b4542 Mon Sep 17 00:00:00 2001 From: xiphon Date: Wed, 26 Feb 2020 17:53:35 +0000 Subject: [PATCH] WizardController: invoke restart() after persistentSettings update --- wizard/WizardController.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wizard/WizardController.qml b/wizard/WizardController.qml index d3157c3e..6ee5f38e 100644 --- a/wizard/WizardController.qml +++ b/wizard/WizardController.qml @@ -364,8 +364,6 @@ Rectangle { // protecting wallet with password wizardController.m_wallet.setPassword(wizardController.walletOptionsPassword); - restart(); - // save to persistent settings persistentSettings.language = wizardController.language_language persistentSettings.locale = wizardController.language_locale @@ -377,6 +375,8 @@ Rectangle { persistentSettings.allow_background_mining = false persistentSettings.is_recovering = (wizardController.walletOptionsIsRecovering === undefined) ? false : wizardController.walletOptionsIsRecovering persistentSettings.is_recovering_from_device = (wizardController.walletOptionsIsRecoveringFromDevice === undefined) ? false : wizardController.walletOptionsIsRecoveringFromDevice + + restart(); } function recoveryWallet() {