diff --git a/pages/Receive.qml b/pages/Receive.qml index 3787033e..773d14ed 100644 --- a/pages/Receive.qml +++ b/pages/Receive.qml @@ -203,39 +203,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 { @@ -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