mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-10 00:05:27 +00:00
exclude notes from rect select
This commit is contained in:
@@ -140,6 +140,9 @@
|
||||
|
||||
return nodes
|
||||
.filter((node) => {
|
||||
// Exclude note nodes from selection (similar to "Select All" behavior)
|
||||
if (node.type === 'note') return false
|
||||
|
||||
const nodeMinX = node.position.x
|
||||
const nodeMaxX = node.position.x + NODE.width
|
||||
const nodeMinY = node.position.y
|
||||
|
||||
Reference in New Issue
Block a user