From fdb7f806fac195b5f83a416a3ab02c62fece9969 Mon Sep 17 00:00:00 2001 From: selsta Date: Sat, 25 Apr 2020 20:55:32 +0200 Subject: [PATCH] SettingsInfo: fix number string formatting --- pages/settings/SettingsInfo.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/settings/SettingsInfo.qml b/pages/settings/SettingsInfo.qml index 84d066e7..a0185c24 100644 --- a/pages/settings/SettingsInfo.qml +++ b/pages/settings/SettingsInfo.qml @@ -230,7 +230,7 @@ Rectangle { appWindow.showStatusMessage(qsTr("Invalid restore height specified. Must be a number or a date formatted YYYY-MM-DD"),3); } inputDialog.onRejectedCallback = null; - inputDialog.open(currentWallet ? currentWallet.walletCreationHeight : "0") + inputDialog.open(currentWallet ? currentWallet.walletCreationHeight.toFixed(0) : "0") } MouseArea {