aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2018-10-27 12:42:25 +0000
committerxiphon <xiphon@protonmail.com>2018-10-27 12:42:25 +0000
commit3b36dc997cceda992fbd8c63a3839e8727a48295 (patch)
tree571ccf6b2f1fa3c666fb66a7035175834af5d23b
parent12a3d687c61518c7becfeb5a98ad963a75d9313f (diff)
downloadmonzero-gui-3b36dc997cceda992fbd8c63a3839e8727a48295.tar.gz
monzero-gui-3b36dc997cceda992fbd8c63a3839e8727a48295.tar.xz
monzero-gui-3b36dc997cceda992fbd8c63a3839e8727a48295.zip
receive: add Payment URL
-rw-r--r--pages/Receive.qml10
1 files changed, 10 insertions, 0 deletions
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
+ }
}
}