bugfix move path node

This commit is contained in:
Mario Voigt 2025-05-28 03:33:19 +02:00
parent bfebcb246b
commit e28083b7cb

View File

@ -154,14 +154,14 @@ class MovePathNode(inkex.EffectExtension):
inkex.utils.debug("More moves entered than possible to apply. Path result would be a point, not a line")
#return
composedPath = inkex.Path()
for newSubpath in newSubpaths:
composedPath.extend(newSubpath)
composedPath = inkex.Path()
for newSubpath in newSubpaths:
composedPath.extend(newSubpath)
if self.options.debug is True:
inkex.utils.debug("Composed path = " + str(composedPath))
if self.options.debug is True:
inkex.utils.debug("Composed path = " + str(composedPath))
element.path = composedPath
element.path = composedPath
def visualizeFirstTwo(self, element):
"""Add a dot label for this path element"""