Merge pull request #8298 from gonfunko/width-fix

fix: use the correct with in getBoundingRectangleWithoutChildren().
This commit is contained in:
Aaron Dodson
2024-07-10 15:57:48 -07:00
committed by GitHub

View File

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