summaryrefslogtreecommitdiff
path: root/lib/patterns.py
diff options
context:
space:
mode:
authorKaalleen <reni@allenka.de>2021-08-16 16:30:22 +0200
committerKaalleen <reni@allenka.de>2021-08-16 16:30:22 +0200
commitb49f7d28314f30727f9f963bddb795b88a95f2bd (patch)
tree149c85333030229918577c92f34ff2a785368914 /lib/patterns.py
parentdd865008356d1e04b29a5eb59a8480900f255628 (diff)
keep satin column edges
Diffstat (limited to 'lib/patterns.py')
-rw-r--r--lib/patterns.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/patterns.py b/lib/patterns.py
index 70700f18..8a0c8449 100644
--- a/lib/patterns.py
+++ b/lib/patterns.py
@@ -58,6 +58,9 @@ def _apply_fill_patterns(patterns, patches):
elif stitch.has_tag('auto_fill_travel'):
# keep travel stitches (underpath or travel around the border)
patch_points.append(stitch)
+ elif stitch.has_tag('satin_column') and not stitch.has_tag('satin_split_stitch'):
+ # keep satin column stitches unless they are split stitches
+ patch_points.append(stitch)
patch.stitches = patch_points