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: "Copy address to clipboard"; icon: "../images/dropdownCopy.png" }
ListElement { name: "Send to same destination"; icon: "../images/dropdownSend.png" }
// ListElement { name: "Find similar transactions"; icon: "../images/dropdownSearch.png" }
- ListElement { name: "Remove from history"; icon: "../images/dropdownDel.png" }
+ ListElement { name: "Remove from address book"; 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);
}
-
-
}
}