don't embroider stuff set to invisible (layers, groups, paths, etc)

pull/1/head
Lex Neva 2016-02-25 17:23:16 -05:00
rodzic 3c3591c78b
commit 43b16936be
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -864,6 +864,9 @@ class Embroider(inkex.Effect):
return runs
def handle_node(self, node):
if simplestyle.parseStyle(node.get("style")).get('display') == "none":
return
for child in node:
self.handle_node(child)