aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pages/settings/SettingsInfo.qml2
1 files changed, 1 insertions, 1 deletions
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 {