From 1bcf5901d66544f3429cd7b248c509c57c0b533a Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Tue, 31 Mar 2026 09:23:19 -0700 Subject: [PATCH] [Path] preserve width from normalized form --- masque/shapes/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/shapes/path.py b/masque/shapes/path.py index 3df55f4..fc8793d 100644 --- a/masque/shapes/path.py +++ b/masque/shapes/path.py @@ -481,7 +481,7 @@ class Path(Shape): (offset, scale / norm_value, rotation, False), lambda: Path( reordered_vertices * norm_value, - width=self.width * norm_value, + width=width0 * norm_value, cap=self.cap, ))