From ed603f310e33d26415b20cd9caa7c36bf5b427ec Mon Sep 17 00:00:00 2001 From: xiphon Date: Sat, 20 Apr 2019 05:38:55 +0000 Subject: [PATCH] device: fix hardware wallet creation / restore height --- main.qml | 3 +++ wizard/WizardController.qml | 1 + 2 files changed, 4 insertions(+) diff --git a/main.qml b/main.qml index 6d9a3d70..90fbad0e 100644 --- a/main.qml +++ b/main.qml @@ -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 = "";