1
mirror of https://github.com/monero-project/monero-gui synced 2024-12-01 08:11:54 +01:00

receive: add Payment URL

This commit is contained in:
xiphon 2018-10-27 12:42:25 +00:00
parent 12a3d687c6
commit 3b36dc997c

View File

@ -495,6 +495,16 @@ Rectangle {
}
}
}
LineEdit {
id: paymentUrl
Layout.fillWidth: true
labelText: qsTr("Payment URL") + translationManager.emptyString
text: makeQRCodeString()
onTextUpdated: function() { paymentUrl.cursorPosition = 0; }
readOnly: true
copyButton: true
}
}
}