From adb6f008afae56d2216dfc547ea4ae48dee35bd2 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Mon, 20 May 2024 16:02:09 +0200 Subject: tartan: fix non tartan group selection (#2922) --- lib/extensions/tartan.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'lib/extensions/tartan.py') diff --git a/lib/extensions/tartan.py b/lib/extensions/tartan.py index 7f8c582a..8c3c8c5f 100644 --- a/lib/extensions/tartan.py +++ b/lib/extensions/tartan.py @@ -32,8 +32,15 @@ class Tartan(InkstitchExtension): def _get_elements(self): for node in self.svg.selection: + self.get_selection(node) + + def get_selection(self, node): + if node.TAG == 'g' and not node.get_id().startswith('inkstitch-tartan'): + for child_node in node.iterchildren(): + self.get_selection(child_node) + else: node = self.get_outline(node) - if node.style('fill'): + if node.tag in EMBROIDERABLE_TAGS and node.style('fill'): self.elements.add(node) def get_outline(self, node): -- cgit v1.2.3