From 76f7bcd92a383da451f76de296056221d25db315 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Tue, 3 Apr 2018 13:17:00 -0400 Subject: mark stitch plan paths as manual_stitch --- inkstitch/svg.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inkstitch/svg.py b/inkstitch/svg.py index 553f7fab..66806d7a 100644 --- a/inkstitch/svg.py +++ b/inkstitch/svg.py @@ -40,7 +40,8 @@ def color_block_to_paths(color_block, svg): 'stroke-width': "0.4", 'fill': 'none'}), 'd': "M" + " ".join(" ".join(str(coord) for coord in point) for point in point_list), - 'transform': get_correction_transform(svg) + 'transform': get_correction_transform(svg), + 'embroider_manual_stitch': 'true' })) return polylines -- cgit v1.2.3