diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-05-28 22:15:07 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-05-28 22:39:59 -0400 |
| commit | f0c8c6a27b2ea2688bceaea0b86e1c182dee39c9 (patch) | |
| tree | bf97c0e78cf79ee5cd0672f84e2fcc081e13a399 /lib/svg/svg.py | |
| parent | 49b8c9f00b589ec4f2bac02a17b8d58583903e27 (diff) | |
don't do ties around the fake color change of a "STOP after"
Diffstat (limited to 'lib/svg/svg.py')
| -rw-r--r-- | lib/svg/svg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/svg/svg.py b/lib/svg/svg.py index 3bc546e7..852215f2 100644 --- a/lib/svg/svg.py +++ b/lib/svg/svg.py @@ -15,7 +15,7 @@ def color_block_to_point_lists(color_block): point_lists.append([]) continue - if not stitch.jump and not stitch.stop: + if not stitch.jump and not stitch.color_change: point_lists[-1].append(stitch.as_tuple()) return point_lists |
