aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxmr-eric <eric@moneroeric.com>2017-01-07 14:20:40 -0500
committerGitHub <noreply@github.com>2017-01-07 14:20:40 -0500
commitdad9c8216687fa382b27cf3fd6a170fb52ca78c1 (patch)
treed21ec65fa8015dc73492a2ae05e1c664de572dc0
parentd8f9e7360fdbab910283c465aafe36149b1d7f26 (diff)
downloadmonzero-gui-dad9c8216687fa382b27cf3fd6a170fb52ca78c1.tar.gz
monzero-gui-dad9c8216687fa382b27cf3fd6a170fb52ca78c1.tar.xz
monzero-gui-dad9c8216687fa382b27cf3fd6a170fb52ca78c1.zip
Receive.qml: PaymentID above Integrated address
-rw-r--r--pages/Receive.qml66
1 files changed, 33 insertions, 33 deletions
diff --git a/pages/Receive.qml b/pages/Receive.qml
index 3787033e..773d14ed 100644
--- a/pages/Receive.qml
+++ b/pages/Receive.qml
@@ -204,39 +204,6 @@ Rectangle {
}
RowLayout {
- id: integratedAddressRow
- Label {
- id: integratedAddressLabel
- fontSize: 14
- text: qsTr("Integrated address") + translationManager.emptyString
- width: mainLayout.labelWidth
- }
-
-
- LineEdit {
-
- id: integratedAddressLine
- fontSize: mainLayout.lineEditFontSize
- placeholderText: qsTr("ReadOnly wallet integrated address displayed here") + translationManager.emptyString
- readOnly: true
- width: mainLayout.editWidth
- Layout.fillWidth: true
-
- onTextChanged: cursorPosition = 0
-
- IconButton {
- imageSource: "../images/copyToClipboard.png"
- onClicked: {
- if (integratedAddressLine.text.length > 0) {
- clipboard.setText(integratedAddressLine.text)
- }
- }
- }
-
- }
- }
-
- RowLayout {
id: paymentIdRow
Label {
id: paymentIdLabel
@@ -282,6 +249,39 @@ Rectangle {
}
}
}
+
+ RowLayout {
+ id: integratedAddressRow
+ Label {
+ id: integratedAddressLabel
+ fontSize: 14
+ text: qsTr("Integrated address") + translationManager.emptyString
+ width: mainLayout.labelWidth
+ }
+
+
+ LineEdit {
+
+ id: integratedAddressLine
+ fontSize: mainLayout.lineEditFontSize
+ placeholderText: qsTr("ReadOnly wallet integrated address displayed here") + translationManager.emptyString
+ readOnly: true
+ width: mainLayout.editWidth
+ Layout.fillWidth: true
+
+ onTextChanged: cursorPosition = 0
+
+ IconButton {
+ imageSource: "../images/copyToClipboard.png"
+ onClicked: {
+ if (integratedAddressLine.text.length > 0) {
+ clipboard.setText(integratedAddressLine.text)
+ }
+ }
+ }
+
+ }
+ }
RowLayout {
id: amountRow