- Fix a bug.

development
Junsik Shim 2021-04-24 19:31:19 +09:00
parent 9bdf0aac08
commit f673a59dc6
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class mxArrow extends mxShape {
*/
// augmentBoundingBox(bbox: mxRectangle): void;
augmentBoundingBox(bbox) {
super.augmentBoundingBox.apply(bbox);
super.augmentBoundingBox(bbox);
const w = Math.max(this.arrowWidth, this.endSize);
bbox.grow((w / 2 + this.strokewidth) * this.scale);