diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-02-26 14:51:10 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-02-26 14:51:10 -0500 |
| commit | 7067195c2fe16e819170f41790218043fa4b2d4e (patch) | |
| tree | ced9829ca5efe02709a27962bded89d3cd22b5fc /wizard/WizardController.qml | |
| parent | 19cf510e629da647e927f9958959328c0d7ae525 (diff) | |
| parent | c14852cbd71b646f4ae077789299338e172b4542 (diff) | |
| download | monzero-gui-7067195c2fe16e819170f41790218043fa4b2d4e.tar.gz monzero-gui-7067195c2fe16e819170f41790218043fa4b2d4e.tar.xz monzero-gui-7067195c2fe16e819170f41790218043fa4b2d4e.zip | |
Merge pull request #2785
c14852c WizardController: invoke restart() after persistentSettings update (xiphon)
Diffstat (limited to 'wizard/WizardController.qml')
| -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() { |
