Hide tooltips when a node is deleted

This commit is contained in:
Nick O'Leary 2018-10-26 23:17:09 +01:00
parent 5cfc52ea18
commit d4589ed7e3
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
1 changed files with 4 additions and 0 deletions

View File

@ -1343,6 +1343,10 @@ RED.view = (function() {
}
}
function deleteSelection() {
if (portLabelHover) {
portLabelHover.remove();
portLabelHover = null;
}
if (moving_set.length > 0 || selected_link != null) {
var result;
var removedNodes = [];