From 1f5b22149c10e0a0095b12821541c0c691e18a3f Mon Sep 17 00:00:00 2001 From: selsta Date: Sat, 30 Apr 2022 08:36:09 +0200 Subject: [PATCH] WizardCreateDevice1: set default restore height to 1 Due to API reasons height 0 means to approximate the current block height during hardware device restore. That's not what we want by default. Until this gets changed upstream we will set the default to 1. --- wizard/WizardCreateDevice1.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wizard/WizardCreateDevice1.qml b/wizard/WizardCreateDevice1.qml index 9c12c500..4bf54360 100644 --- a/wizard/WizardCreateDevice1.qml +++ b/wizard/WizardCreateDevice1.qml @@ -185,7 +185,7 @@ Rectangle { validator: RegExpValidator { regExp: /^(\d+|\d{4}-\d{2}-\d{2})$/ } - text: "0" + text: "1" } CheckBox2 { @@ -237,7 +237,7 @@ Rectangle { wizardController.walletOptionsDeviceName = wizardCreateDevice1.deviceName; if(lookahead.text) wizardController.walletOptionsSubaddressLookahead = lookahead.text; - if(restoreHeight.text){ + if (restoreHeight.text && wizardController.walletOptionsDeviceIsRestore) { wizardController.walletOptionsRestoreHeight = Utils.parseDateStringOrRestoreHeightAsInteger(restoreHeight.text); } @@ -259,7 +259,7 @@ Rectangle { newDeviceWallet.checked = true; restoreDeviceWallet.checked = false; wizardController.walletOptionsDeviceIsRestore = false; - restoreHeight.text = ""; + restoreHeight.text = "1"; lookahead.text = ""; errorMsg.text = ""; }