From a8a79e38de0866ad813218e15182327633d55733 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 23 Nov 2017 20:04:31 +0000 Subject: don't omit jump stitches --- embroider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'embroider.py') diff --git a/embroider.py b/embroider.py index b7edc011..4fcd89e3 100644 --- a/embroider.py +++ b/embroider.py @@ -1736,7 +1736,7 @@ def stitches_to_polylines(stitches): # last_color = None - if stitch.color != last_color or stitch.jump_stitch: + if stitch.color != last_color: polylines.append([stitch.color, []]) polylines[-1][1].append(stitch.as_tuple()) -- cgit v1.2.3