Fix node bottom clipping by adding padding to computed size

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 02:10:30 +01:00
parent b64636c189
commit e19e918855

View File

@@ -73,7 +73,9 @@ function updateVisibility(node) {
} }
} }
node.setSize(node.computeSize()); const sz = node.computeSize();
sz[1] += 10;
node.setSize(sz);
app.graph?.setDirtyCanvas(true, true); app.graph?.setDirtyCanvas(true, true);
} }