diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-10-16 21:40:10 +0100 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-10-16 21:40:39 +0100 |
| commit | ee4091f2aaabc61960784a6d19bc67f07087cf0e (patch) | |
| tree | 01c00dffff8aa7f48ec0f744da24f14f9731cc33 | |
| parent | 05046a5f21711fc049300b123d2f4b49f185a1d9 (diff) | |
| download | monzero-gui-ee4091f2aaabc61960784a6d19bc67f07087cf0e.tar.gz monzero-gui-ee4091f2aaabc61960784a6d19bc67f07087cf0e.tar.xz monzero-gui-ee4091f2aaabc61960784a6d19bc67f07087cf0e.zip | |
Transfer: bound amount input widget, in range, and number of decimals
| -rw-r--r-- | pages/Transfer.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pages/Transfer.qml b/pages/Transfer.qml index 3921b1ef..05e78c51 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -91,6 +91,8 @@ Rectangle { width: parent.width - 37 - 17 validator: DoubleValidator { bottom: 0.0 + top: 18446744.073709551615 + decimals: 12 notation: DoubleValidator.StandardNotation locale: "C" } |
