exclude notes from rect select

This commit is contained in:
Guilhem
2025-11-11 21:22:45 +01:00
parent 52ef87e3d2
commit c66bdd306f
@@ -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