diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/view.js b/packages/node_modules/@node-red/editor-client/src/js/ui/view.js index ea5f9ee41..cd756cff4 100755 --- a/packages/node_modules/@node-red/editor-client/src/js/ui/view.js +++ b/packages/node_modules/@node-red/editor-client/src/js/ui/view.js @@ -1592,7 +1592,6 @@ RED.view = (function() { if (n.x > x && n.x < x2 && n.y > y && n.y < y2) { if (!activeGroup || RED.group.contains(activeGroup,n)) { if (n.g && (!activeGroup || n.g !== activeGroup.id)) { - console.log("HERE") var group = RED.nodes.group(n.g); while (group.g && (!activeGroup || group.g !== activeGroup.id)) { group = RED.nodes.group(group.g); @@ -3095,7 +3094,7 @@ RED.view = (function() { // } else if (d3.event.shiftKey) { clearSelection(); - var clickPosition = (d3.event.offsetX - mousedown_node.x) + var clickPosition = (d3.event.offsetX/scaleFactor - mousedown_node.x) var edgeDelta = (mousedown_node.w/2) - Math.abs(clickPosition); var cnodes; var targetEdgeDelta = mousedown_node.w > 30 ? 25 : 8;