diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-08 20:23:50 +0000 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-12 19:24:13 +0000 |
| commit | 2143392b84e089319decee65e63c2376e6fdffd4 (patch) | |
| tree | 55b1f905ea17a6f79cc6ff15ed27522f22b20ee1 /MiddlePanel.qml | |
| parent | b8ea2ffc745edaa250f2da5b65b121469d5045df (diff) | |
| download | monzero-gui-2143392b84e089319decee65e63c2376e6fdffd4.tar.gz monzero-gui-2143392b84e089319decee65e63c2376e6fdffd4.tar.xz monzero-gui-2143392b84e089319decee65e63c2376e6fdffd4.zip | |
Add a button to sweep unmixable outputs
Diffstat (limited to 'MiddlePanel.qml')
| -rw-r--r-- | MiddlePanel.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MiddlePanel.qml b/MiddlePanel.qml index 7080e338..74c731c8 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -52,6 +52,7 @@ Rectangle { signal paymentClicked(string address, string paymentId, string amount, int mixinCount, int priority, string description) + signal sweepUnmixableClicked() signal generatePaymentIdInvoked() signal checkPaymentClicked(string address, string txid, string txkey); @@ -308,5 +309,9 @@ Rectangle { console.log("MiddlePanel: paymentClicked") paymentClicked(address, paymentId, amount, mixinCount, priority, description) } + onSweepUnmixableClicked : { + console.log("MiddlePanel: sweepUnmixableClicked") + sweepUnmixableClicked() + } } } |
