diff --git a/pages/Receive.qml b/pages/Receive.qml index 1b8c436f..ea443502 100644 --- a/pages/Receive.qml +++ b/pages/Receive.qml @@ -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 + } } }