summaryrefslogtreecommitdiff
path: root/lib/elements/satin_column.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-04-23 07:02:54 +0200
committerGitHub <noreply@github.com>2023-04-23 07:02:54 +0200
commit16f52ca5dad2a7571cd46e4901c3a66637ad8b2c (patch)
tree567722c1560d88737ebada152714d1b9b453ec0a /lib/elements/satin_column.py
parentdf94082cefa05c98ae6da43ecf4a25437ae16b30 (diff)
lettering: preserve scale (#2230)
Diffstat (limited to 'lib/elements/satin_column.py')
-rw-r--r--lib/elements/satin_column.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py
index 8330d67a..3a0b0f8e 100644
--- a/lib/elements/satin_column.py
+++ b/lib/elements/satin_column.py
@@ -1094,11 +1094,11 @@ class SatinColumn(EmbroideryElement):
points, _ = self.get_split_points(last_point, left, last_point, left, max_stitch_length)
patch.add_stitches(points)
- patch.add_stitch(a_short, ("edge"))
- patch.add_stitches(split_points, ("split_stitch"))
- patch.add_stitch(b_short, ("edge"))
- patch.add_stitches(split_points[::-1], ("split_stitch"))
- patch.add_stitch(a_short, ("edge"))
+ patch.add_stitch(a_short, ("edge", "left"))
+ patch.add_stitches(split_points, ("split_stitch",))
+ patch.add_stitch(b_short, ("edge",))
+ patch.add_stitches(split_points[::-1], ("split_stitch",))
+ patch.add_stitch(a_short, ("edge",))
last_point = a_short