From 76c3a6681a417a009bd423f2afdbc7895a1a8775 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Wed, 5 Feb 2025 16:47:03 +0100 Subject: fix auto_satin transform issue (#3489) --- lib/lettering/font.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/lettering/font.py') diff --git a/lib/lettering/font.py b/lib/lettering/font.py index 1805b0b4..0c02de84 100644 --- a/lib/lettering/font.py +++ b/lib/lettering/font.py @@ -525,7 +525,7 @@ class Font(object): satin operation. Any nested svg:g elements will be removed. """ - elements = nodes_to_elements(group.iterdescendants(SVG_PATH_TAG)) + elements = nodes_to_elements(group.iterdescendants(EMBROIDERABLE_TAGS)) elements = [element for element in elements if isinstance(element, SatinColumn) or isinstance(element, Stroke)] if elements and any(isinstance(element, SatinColumn) for element in elements): -- cgit v1.2.3