mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-03 17:39:54 +00:00
Merge pull request #2785
c14852c
WizardController: invoke restart() after persistentSettings update (xiphon)
This commit is contained in:
commit
7067195c2f
1 changed files with 2 additions and 2 deletions
|
@ -364,8 +364,6 @@ Rectangle {
|
||||||
// protecting wallet with password
|
// protecting wallet with password
|
||||||
wizardController.m_wallet.setPassword(wizardController.walletOptionsPassword);
|
wizardController.m_wallet.setPassword(wizardController.walletOptionsPassword);
|
||||||
|
|
||||||
restart();
|
|
||||||
|
|
||||||
// save to persistent settings
|
// save to persistent settings
|
||||||
persistentSettings.language = wizardController.language_language
|
persistentSettings.language = wizardController.language_language
|
||||||
persistentSettings.locale = wizardController.language_locale
|
persistentSettings.locale = wizardController.language_locale
|
||||||
|
@ -377,6 +375,8 @@ Rectangle {
|
||||||
persistentSettings.allow_background_mining = false
|
persistentSettings.allow_background_mining = false
|
||||||
persistentSettings.is_recovering = (wizardController.walletOptionsIsRecovering === undefined) ? false : wizardController.walletOptionsIsRecovering
|
persistentSettings.is_recovering = (wizardController.walletOptionsIsRecovering === undefined) ? false : wizardController.walletOptionsIsRecovering
|
||||||
persistentSettings.is_recovering_from_device = (wizardController.walletOptionsIsRecoveringFromDevice === undefined) ? false : wizardController.walletOptionsIsRecoveringFromDevice
|
persistentSettings.is_recovering_from_device = (wizardController.walletOptionsIsRecoveringFromDevice === undefined) ? false : wizardController.walletOptionsIsRecoveringFromDevice
|
||||||
|
|
||||||
|
restart();
|
||||||
}
|
}
|
||||||
|
|
||||||
function recoveryWallet() {
|
function recoveryWallet() {
|
||||||
|
|
Loading…
Reference in a new issue