diff options
| author | Riccardo Spagni <ric@spagni.net> | 2016-12-22 10:58:00 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2016-12-22 10:58:00 +0200 |
| commit | 13253c3a2e2133f9cd403dd2f98326e1a0e62b19 (patch) | |
| tree | 6dfb2bdff7f7cf90a016c775c4231e710ec11b45 /components | |
| parent | c7c112e51ca45ad35eea68ba550e2d77d5d076b6 (diff) | |
| parent | 3c970bf2782324cef3603be7ff6d7e7cd8f6f8c6 (diff) | |
| download | monzero-gui-13253c3a2e2133f9cd403dd2f98326e1a0e62b19.tar.gz monzero-gui-13253c3a2e2133f9cd403dd2f98326e1a0e62b19.tar.xz monzero-gui-13253c3a2e2133f9cd403dd2f98326e1a0e62b19.zip | |
Merge pull request #329
3c970bf addressbook: fix tooltip label and visibility (Jaquee)
Diffstat (limited to 'components')
| -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); } - - } } |
