diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-11-02 07:51:15 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-11-03 16:57:12 +0100 |
| commit | 2170f6a46d42704f5fe1b0ff04bf7a9a5992804f (patch) | |
| tree | 4e44336b8ee08d93c58f3d08eddbf9fe0411ca34 /components/AddressBookTable.qml | |
| parent | e6ada22611dcdb34dbba3298dc1597fd04e29590 (diff) | |
| download | monzero-gui-2170f6a46d42704f5fe1b0ff04bf7a9a5992804f.tar.gz monzero-gui-2170f6a46d42704f5fe1b0ff04bf7a9a5992804f.tar.xz monzero-gui-2170f6a46d42704f5fe1b0ff04bf7a9a5992804f.zip | |
Improve copy text handling
Diffstat (limited to 'components/AddressBookTable.qml')
| -rw-r--r-- | components/AddressBookTable.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/AddressBookTable.qml b/components/AddressBookTable.qml index abf72371..4d281440 100644 --- a/components/AddressBookTable.qml +++ b/components/AddressBookTable.qml @@ -144,8 +144,10 @@ ListView { onOptionClicked: { // Ensure tooltip is closed appWindow.toolTip.visible = false; - if(option === 0) + if(option === 0) { clipboard.setText(address) + appWindow.showStatusMessage(qsTr("Address copied to clipboard"),3) + } else if(option === 1){ console.log("Sending to: ", address +" "+ paymentId); middlePanel.sendTo(address, paymentId, description); |
