diff --git a/src/jlgraphic/graphic/VectorText.ts b/src/jlgraphic/graphic/VectorText.ts index f28e031..e8e912b 100644 --- a/src/jlgraphic/graphic/VectorText.ts +++ b/src/jlgraphic/graphic/VectorText.ts @@ -30,6 +30,7 @@ export class VectorText extends Text implements VectorGraphic { */ setVectorFontSize(fontSize: number) { this.vectorFontSize = fontSize; - this.style.fontSize = fontSize; + // this.style.fontSize = fontSize; + this.updateOnScaled(); } }