summaryrefslogtreecommitdiff
path: root/lib/svg/rendering.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-03-25 19:45:36 +0100
committerGitHub <noreply@github.com>2023-03-25 19:45:36 +0100
commit221ff2a645d453a974160a155af1a047c224d80b (patch)
treef0f7979903a2f87e0593f34eade2e37679dad3ca /lib/svg/rendering.py
parentd8e80f4df8c12d2f7921bfa282ba06390ff09974 (diff)
Stitch selection methods (#2114)
Diffstat (limited to 'lib/svg/rendering.py')
-rw-r--r--lib/svg/rendering.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/svg/rendering.py b/lib/svg/rendering.py
index 64090554..5ee6d328 100644
--- a/lib/svg/rendering.py
+++ b/lib/svg/rendering.py
@@ -202,7 +202,7 @@ def color_block_to_paths(color_block, svg, destination, visual_commands):
'style': "stroke: %s; stroke-width: 0.4; fill: none;" % color,
'd': "M" + " ".join(" ".join(str(coord) for coord in point) for point in point_list),
'transform': get_correction_transform(svg),
- INKSTITCH_ATTRIBS['manual_stitch']: 'true'
+ INKSTITCH_ATTRIBS['stroke_method']: 'manual_stitch'
})
destination.append(path)