fix: use the correct with in getBoundingRectangleWithoutChildren().

This commit is contained in:
Aaron Dodson
2024-07-10 15:54:56 -07:00
parent fa15cda950
commit b0169ab724

View File

@@ -457,7 +457,7 @@ export class BlockSvg
getBoundingRectangleWithoutChildren(): Rect {
return this.getBoundingRectangleWithDimensions({
height: this.height,
width: this.width,
width: this.childlessWidth,
});
}