aboutsummaryrefslogtreecommitdiff
path: root/MiddlePanel.qml
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2021-02-02 16:00:46 +0000
committerxiphon <xiphon@protonmail.com>2021-03-03 00:53:51 +0000
commit92a2ae1a117eac6190f486cf48b6066fe7f205eb (patch)
tree22b96350258dcb012ec612566da8faae9c60fb92 /MiddlePanel.qml
parentc073867657d877940ccd826451b3e583d7934231 (diff)
downloadmonzero-gui-92a2ae1a117eac6190f486cf48b6066fe7f205eb.tar.gz
monzero-gui-92a2ae1a117eac6190f486cf48b6066fe7f205eb.tar.xz
monzero-gui-92a2ae1a117eac6190f486cf48b6066fe7f205eb.zip
TxConfirmationDialog: implement multiple recipients support, layout fixes
Diffstat (limited to 'MiddlePanel.qml')
-rw-r--r--MiddlePanel.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/MiddlePanel.qml b/MiddlePanel.qml
index 0bcca0be..2d850eac 100644
--- a/MiddlePanel.qml
+++ b/MiddlePanel.qml
@@ -51,7 +51,7 @@ Rectangle {
property alias flickable: mainFlickable
property Transfer transferView: Transfer {
- onPaymentClicked: root.paymentClicked(address, paymentId, amount, mixinCount, priority, description)
+ onPaymentClicked: root.paymentClicked(recipients, paymentId, mixinCount, priority, description)
onSweepUnmixableClicked: root.sweepUnmixableClicked()
}
property Receive receiveView: Receive { }
@@ -66,7 +66,7 @@ Rectangle {
property Keys keysView: Keys { }
property Account accountView: Account { }
- signal paymentClicked(string address, string paymentId, string amount, int mixinCount, int priority, string description)
+ signal paymentClicked(var recipients, string paymentId, int mixinCount, int priority, string description)
signal sweepUnmixableClicked()
signal generatePaymentIdInvoked()
signal getProofClicked(string txid, string address, string message);