Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions pyembroidery/SewReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ def read_sew_stitches(f, out):
if control == 0x04 or control == 0x02:
out.move(signed8(b[0]), -signed8(b[1]))
continue
if control == 0x10:
out.stitch(signed8(b[0]), -signed8(b[1]))
continue
if control == 0x10: # End of stitches
out.end()
return

break
out.end()

Expand Down