diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2016-12-21 21:57:47 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2016-12-21 22:52:58 +0100 |
| commit | 3c970bf2782324cef3603be7ff6d7e7cd8f6f8c6 (patch) | |
| tree | 6dfb2bdff7f7cf90a016c775c4231e710ec11b45 | |
| parent | c7c112e51ca45ad35eea68ba550e2d77d5d076b6 (diff) | |
| download | monzero-gui-3c970bf2782324cef3603be7ff6d7e7cd8f6f8c6.tar.gz monzero-gui-3c970bf2782324cef3603be7ff6d7e7cd8f6f8c6.tar.xz monzero-gui-3c970bf2782324cef3603be7ff6d7e7cd8f6f8c6.zip | |
addressbook: fix tooltip label and visibility
| -rw-r--r-- | components/AddressBookTable.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/AddressBookTable.qml b/components/AddressBookTable.qml index 129b932c..77b9dfe2 100644 --- a/components/AddressBookTable.qml +++ b/components/AddressBookTable.qml @@ -127,7 +127,7 @@ ListView { ListElement { name: "<b>Copy address to clipboard</b>"; icon: "../images/dropdownCopy.png" } ListElement { name: "<b>Send to same destination</b>"; icon: "../images/dropdownSend.png" } // ListElement { name: "<b>Find similar transactions</b>"; icon: "../images/dropdownSearch.png" } - ListElement { name: "<b>Remove from history</b>"; icon: "../images/dropdownDel.png" } + ListElement { name: "<b>Remove from address book</b>"; icon: "../images/dropdownDel.png" } } Clipboard { id: clipboard } @@ -145,6 +145,8 @@ ListView { } } onOptionClicked: { + // Ensure tooltip is closed + appWindow.toolTip.visible = false; if(option === 0) clipboard.setText(address) else if(option === 1){ @@ -155,8 +157,6 @@ ListView { console.log("Delete: ", rowId); currentWallet.addressBookModel.deleteRow(rowId); } - - } } |
