summaryrefslogtreecommitdiff
path: root/lib/stitch_plan/stitch_plan.py
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-07-15 23:01:52 -0400
committerLex Neva <github.com@lexneva.name>2018-07-25 21:17:58 -0400
commit754bf54897e309fa21fa61bc7a626cde71a00f97 (patch)
treeb3e4edf63ce2b81f4f30114a223899c260ca7a8a /lib/stitch_plan/stitch_plan.py
parent2cd4963d09ef78dd25a7401cc47a69474d7fa952 (diff)
fix gap caused by splitting block
Diffstat (limited to 'lib/stitch_plan/stitch_plan.py')
-rw-r--r--lib/stitch_plan/stitch_plan.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/stitch_plan/stitch_plan.py b/lib/stitch_plan/stitch_plan.py
index 1a466295..5d847ad2 100644
--- a/lib/stitch_plan/stitch_plan.py
+++ b/lib/stitch_plan/stitch_plan.py
@@ -1,3 +1,5 @@
+from copy import copy
+
from .stitch import Stitch
from .stop import process_stop
from .trim import process_trim
@@ -254,4 +256,11 @@ class ColorBlock(object):
new_color_block = ColorBlock(self.color, self.stitches[index:])
del self.stitches[index:]
+ # If we're splitting in the middle of a run of stitches, we don't
+ # want a gap to appear in the preview and the PDF printout, so
+ # add an extra stitch to bridge the gap. Technically this will
+ # result in a double needle penetration but it's no big deal.
+ if not self.last_stitch.trim:
+ self.add_stitch(copy(new_color_block.stitches[0]))
+
return new_color_block