diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-05 23:19:28 +0000 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-05 23:21:56 +0000 |
| commit | d95e4a37cf45a0e8cad77bcf421bf7b7fa7df22b (patch) | |
| tree | a253dbfd172579e20446c8cd7807412f81be8dc8 /BasicPanel.qml | |
| parent | c9bb2f571895edb6a01ca5528c944d09bc222823 (diff) | |
| download | monzero-gui-d95e4a37cf45a0e8cad77bcf421bf7b7fa7df22b.tar.gz monzero-gui-d95e4a37cf45a0e8cad77bcf421bf7b7fa7df22b.tar.xz monzero-gui-d95e4a37cf45a0e8cad77bcf421bf7b7fa7df22b.zip | |
Write support for tx notes
Support still needs adding for displaying them in the history,
but at least they're saved in the cache now, and not ignored.
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) } } |
