1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

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

View File

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