aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2020-04-25 20:55:32 +0200
committerselsta <selsta@sent.at>2020-04-25 20:55:32 +0200
commitfdb7f806fac195b5f83a416a3ab02c62fece9969 (patch)
tree7e02d5c0cfce38eadceb8ccddbfe9b735056ffed /pages
parent585fb2810dc0d9b79255b9bd479559b36aa087d8 (diff)
downloadmonzero-gui-fdb7f806fac195b5f83a416a3ab02c62fece9969.tar.gz
monzero-gui-fdb7f806fac195b5f83a416a3ab02c62fece9969.tar.xz
monzero-gui-fdb7f806fac195b5f83a416a3ab02c62fece9969.zip
SettingsInfo: fix number string formatting
Diffstat (limited to 'pages')
-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 {