mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-13 11:56:32 +02:00
Receive.qml: PaymentID above Integrated address
This commit is contained in:
parent
d8f9e7360f
commit
dad9c82166
@ -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 {
|
RowLayout {
|
||||||
id: paymentIdRow
|
id: paymentIdRow
|
||||||
Label {
|
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 {
|
RowLayout {
|
||||||
id: amountRow
|
id: amountRow
|
||||||
|
Loading…
Reference in New Issue
Block a user