diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-04-03 13:17:00 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-04-03 13:17:00 -0400 |
| commit | 76f7bcd92a383da451f76de296056221d25db315 (patch) | |
| tree | 42e139d10a11149d38a592d92ab5c46ebe907b63 | |
| parent | b7c840728adf68f6fdb5309ae2bf2d41ac687b77 (diff) | |
mark stitch plan paths as manual_stitch
| -rw-r--r-- | inkstitch/svg.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 |
