diff options
| author | xiphon <xiphon@protonmail.com> | 2020-02-26 17:53:35 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2020-02-26 17:53:35 +0000 |
| commit | c14852cbd71b646f4ae077789299338e172b4542 (patch) | |
| tree | c84574bf0961efafe19da9cdbcb6a457938e83c1 | |
| parent | eb7fae92ef0ed01a1d17e56fac217c6450716ccc (diff) | |
| download | monzero-gui-c14852cbd71b646f4ae077789299338e172b4542.tar.gz monzero-gui-c14852cbd71b646f4ae077789299338e172b4542.tar.xz monzero-gui-c14852cbd71b646f4ae077789299338e172b4542.zip | |
WizardController: invoke restart() after persistentSettings update
| -rw-r--r-- | wizard/WizardController.qml | 4 |
1 files 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() { |
