bugfix in VH to Line converter

This commit is contained in:
leyghisbb 2020-08-30 11:30:19 +02:00
parent 7a824ff6da
commit 56adeb615a

View File

@ -41,9 +41,8 @@ class VHToLine(inkex.Effect):
seg = []
for simpath in subpaths:
closed = False
if simpath[-1][0] == 'Z':
closed = True
simpath[-1][0] = 'L'
if simpath[-2][0] == 'L': simpath[-1][1] = simpath[0][1]
else: simpath.pop()
for i in range(len(simpath)):