Update packages/node_modules/@node-red/editor-client/src/js/ui/view.js

This commit is contained in:
Nick O'Leary 2023-03-20 20:29:10 +00:00 committed by GitHub
parent b56bd7bb5e
commit 33ea25922d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -1927,10 +1927,6 @@ RED.view = (function() {
// group entirely within lasso
if (n.x > x && n.y > y && n.x + n.w < x2 && n.y + n.h < y2) {
selectGroup(n, true)
// n.selected = true
// n.dirty = true
// var groupNodes = RED.group.getNodes(n,true);
// groupNodes.forEach(gn => movingSet.add(gn))
}
}
})