small fix in paths_to_openscad

This commit is contained in:
Mario Voigt 2022-12-03 21:26:40 +01:00
parent 374769a3e0
commit 10f4794199

View File

@ -1073,7 +1073,7 @@ class PathsToOpenSCAD(inkex.EffectExtension):
first = False first = False
else: else:
d.append(["L", coords]) d.append(["L", coords])
if node.TAG == "polygon": if node.tag == "polygon":
d.append(["Z", []]) d.append(["Z", []])
self.getPathVertices(d, node, matNew) self.getPathVertices(d, node, matNew)