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:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user