diff options
| -rw-r--r-- | main.qml | 3 | ||||
| -rw-r--r-- | wizard/WizardController.qml | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -602,6 +602,9 @@ ApplicationWindow { if(persistentSettings.is_recovering) { persistentSettings.is_recovering = false } + if (persistentSettings.is_recovering_from_device) { + persistentSettings.is_recovering_from_device = false; + } } // Update history on every refresh if it's empty diff --git a/wizard/WizardController.qml b/wizard/WizardController.qml index 6bac1e6a..34744987 100644 --- a/wizard/WizardController.qml +++ b/wizard/WizardController.qml @@ -507,6 +507,7 @@ Rectangle { function openWalletFile(fn) { persistentSettings.restore_height = 0; persistentSettings.is_recovering = false; + persistentSettings.is_recovering_from_device = false; appWindow.restoreHeight = 0; appWindow.walletPassword = ""; |
