fixed str() cast in applytransform extension

This commit is contained in:
Mario Voigt 2021-04-02 10:19:27 +02:00
parent 162a2ddd47
commit a6eeee0205
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ class ApplyTransform(inkex.EffectExtension):
d = node.get('d')
p = CubicSuperPath(d)
p = Path(p).to_absolute().transform(transf, True)
node.set('d', Path(CubicSuperPath(p).to_path()))
node.set('d', str(Path(CubicSuperPath(p).to_path())))
self.scaleStrokeWidth(node, transf)