Link nodes show hidden wires when selected

This commit is contained in:
Nick O'Leary
2016-05-17 09:16:58 +01:00
parent f1f8c887c6
commit db433efbef
9 changed files with 637 additions and 145 deletions

View File

@@ -622,7 +622,6 @@ RED.editor = (function() {
}
editing_node.dirty = true;
validateNode(editing_node);
RED.view.redraw(true);
RED.tray.close();
}
}
@@ -676,6 +675,7 @@ RED.editor = (function() {
RED.sidebar.info.refresh(editing_node);
}
RED.workspaces.refresh();
RED.view.redraw(true);
editStack.pop();
if (editStack.length === 0) {
RED.view.focus();
@@ -1010,7 +1010,7 @@ RED.editor = (function() {
validateNode(user);
}
RED.nodes.dirty(true);
RED.view.redraw();
RED.view.redraw(true);
RED.history.push(historyEvent);
RED.tray.close(function() {
updateConfigNodeSelect(configProperty,configType,"",prefix);