diff options
| author | xmr-eric <eric@moneroeric.com> | 2017-01-07 14:20:40 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-07 14:20:40 -0500 |
| commit | dad9c8216687fa382b27cf3fd6a170fb52ca78c1 (patch) | |
| tree | d21ec65fa8015dc73492a2ae05e1c664de572dc0 | |
| parent | d8f9e7360fdbab910283c465aafe36149b1d7f26 (diff) | |
| download | monzero-gui-dad9c8216687fa382b27cf3fd6a170fb52ca78c1.tar.gz monzero-gui-dad9c8216687fa382b27cf3fd6a170fb52ca78c1.tar.xz monzero-gui-dad9c8216687fa382b27cf3fd6a170fb52ca78c1.zip | |
Receive.qml: PaymentID above Integrated address
| -rw-r--r-- | pages/Receive.qml | 66 |
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 |
