summaryrefslogtreecommitdiff
path: root/lib/elements
diff options
context:
space:
mode:
Diffstat (limited to 'lib/elements')
-rw-r--r--lib/elements/satin_column.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py
index 6acb2f52..593eac01 100644
--- a/lib/elements/satin_column.py
+++ b/lib/elements/satin_column.py
@@ -1213,11 +1213,13 @@ class SatinColumn(EmbroideryElement):
points = [points[0] for points in pairs]
stitches = running_stitch.even_running_stitch(points, self.center_walk_underlay_stitch_length, self.center_walk_underlay_stitch_tolerance)
+ repeated_stitches = []
for i in range(self.center_walk_underlay_repeats - 1):
if i % 2 == 0:
- stitches.extend(reversed(stitches))
+ repeated_stitches.extend(reversed(stitches))
else:
- stitches.extend(stitches)
+ repeated_stitches.extend(stitches)
+ stitches.extend(repeated_stitches)
return StitchGroup(
color=self.color,