summaryrefslogtreecommitdiff
path: root/lib/elements
diff options
context:
space:
mode:
authorKaalleen <reni@allenka.de>2023-05-17 23:17:58 +0200
committerKaalleen <reni@allenka.de>2023-05-17 23:17:58 +0200
commitb6cf065f09ca474b6d325c467f486c0647f664ad (patch)
treeaba19a50f565369aa00bb57b2526053ec18ba82a /lib/elements
parent97d53bad33ce4279f45fef54e78ea67fb66752c6 (diff)
fix starting point for multiple underlays
Diffstat (limited to 'lib/elements')
-rw-r--r--lib/elements/fill_stitch.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py
index 91cad563..80e68247 100644
--- a/lib/elements/fill_stitch.py
+++ b/lib/elements/fill_stitch.py
@@ -769,8 +769,7 @@ class FillStitch(EmbroideryElement):
starting_point,
underpath=self.underlay_underpath))
stitch_groups.append(underlay)
-
- starting_point = underlay.stitches[-1]
+ starting_point = underlay.stitches[-1]
return [stitch_groups, starting_point]
def do_auto_fill(self, shape, last_patch, starting_point, ending_point):