diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-09 13:00:43 +0000 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-12 19:24:13 +0000 |
| commit | c779b376fc06c1912b896549b5f39c4a6ef0ec5a (patch) | |
| tree | 3ab548d3e931a5db6e88de6897105584773f686c /pages | |
| parent | 2143392b84e089319decee65e63c2376e6fdffd4 (diff) | |
| download | monzero-gui-c779b376fc06c1912b896549b5f39c4a6ef0ec5a.tar.gz monzero-gui-c779b376fc06c1912b896549b5f39c4a6ef0ec5a.tar.xz monzero-gui-c779b376fc06c1912b896549b5f39c4a6ef0ec5a.zip | |
Support for sweeping all outputs
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/Transfer.qml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/pages/Transfer.qml b/pages/Transfer.qml index 260f4b54..3c687ff1 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -89,7 +89,7 @@ Rectangle { LineEdit { id: amountLine placeholderText: qsTr("") + translationManager.emptyString - width: parent.width - 37 - 17 + width: parent.width - 37 - 17 - 60 validator: DoubleValidator { bottom: 0.0 top: 18446744.073709551615 @@ -98,6 +98,21 @@ Rectangle { locale: "C" } } + + StandardButton { + id: amountAllButton + //anchors.left: amountLine.right + //anchors.top: amountLine.top + //anchors.bottom: amountLine.bottom + width: 60 + text: qsTr("or ALL") + translationManager.emptyString + shadowReleasedColor: "#FF4304" + shadowPressedColor: "#B32D00" + releasedColor: "#FF6C3C" + pressedColor: "#FF4304" + enabled : true + onClicked: amountLine.text = "(all)" + } } ListModel { |
