diff options
| author | Lex Neva <github.com@lexneva.name> | 2019-01-17 19:55:51 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2019-01-17 19:55:51 -0500 |
| commit | 3d993778524c523cfa96d80d9f1df88a671bbe24 (patch) | |
| tree | a5159bffd6fd89ac2fba7bae971d113ce5465444 /lib/elements | |
| parent | dd4e5c8e2344518d08ec76559e0ee8a1f8bfb327 (diff) | |
don't add jump stitches between satin column fill and top stitching
Diffstat (limited to 'lib/elements')
| -rw-r--r-- | lib/elements/satin_column.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py index a1ecfb47..f891e049 100644 --- a/lib/elements/satin_column.py +++ b/lib/elements/satin_column.py @@ -717,22 +717,22 @@ class SatinColumn(EmbroideryElement): # First, verify that we have valid paths. self.validate_satin_column() - patches = [] + patch = Patch(color=self.color) if self.center_walk_underlay: - patches.append(self.do_center_walk()) + patch += self.do_center_walk() if self.contour_underlay: - patches.append(self.do_contour_underlay()) + patch += self.do_contour_underlay() if self.zigzag_underlay: # zigzag underlay comes after contour walk underlay, so that the # zigzags sit on the contour walk underlay like rail ties on rails. - patches.append(self.do_zigzag_underlay()) + patch += self.do_zigzag_underlay() if self.e_stitch: - patches.append(self.do_e_stitch()) + patch += self.do_e_stitch() else: - patches.append(self.do_satin()) + patch += self.do_satin() - return patches + return [patch] |
