From 51ced2fe83e4a952eae541f0e7d55b94621e28c6 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sun, 15 Feb 2026 00:07:43 -0800 Subject: [PATCH] [Text] use translate instead of offset --- masque/shapes/text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/shapes/text.py b/masque/shapes/text.py index 87293fc..65a9213 100644 --- a/masque/shapes/text.py +++ b/masque/shapes/text.py @@ -149,7 +149,7 @@ class Text(PositionableImpl, RotatableImpl, Shape): if self.mirrored: poly.mirror() poly.scale_by(self.height) - poly.offset = self.offset + [total_advance, 0] + poly.translate(self.offset + [total_advance, 0]) poly.rotate_around(self.offset, self.rotation) all_polygons += [poly]