diff options
| author | Riccardo Spagni <ric@spagni.net> | 2016-11-09 20:42:44 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2016-11-09 20:42:44 +0200 |
| commit | 60b65b9bcc9d3445593a6eca435819144ee64021 (patch) | |
| tree | d7c80a8abea9e0ff4d89f18f87dc9dfc268b746e /BasicPanel.qml | |
| parent | dca51b97b70452f16ec962f0315f337c0e21d46c (diff) | |
| parent | d95e4a37cf45a0e8cad77bcf421bf7b7fa7df22b (diff) | |
| download | monzero-gui-60b65b9bcc9d3445593a6eca435819144ee64021.tar.gz monzero-gui-60b65b9bcc9d3445593a6eca435819144ee64021.tar.xz monzero-gui-60b65b9bcc9d3445593a6eca435819144ee64021.zip | |
Merge pull request #115
d95e4a3 Write support for tx notes (moneromooo.monero)
Diffstat (limited to 'BasicPanel.qml')
| -rw-r--r-- | BasicPanel.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BasicPanel.qml b/BasicPanel.qml index ff3fc7cb..d85b84f9 100644 --- a/BasicPanel.qml +++ b/BasicPanel.qml @@ -47,13 +47,13 @@ Rectangle { property alias unlockedBalanceText : availableBalanceText.text; // repeating signal to the outside world signal paymentClicked(string address, string paymentId, double amount, int mixinCount, - int priority) + int priority, string description) Connections { target: transferBasic onPaymentClicked: { console.log("BasicPanel: paymentClicked") - root.paymentClicked(address, paymentId, amount, mixinCount, priority) + root.paymentClicked(address, paymentId, amount, mixinCount, priority, description) } } |
