From 16f52ca5dad2a7571cd46e4901c3a66637ad8b2c Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sun, 23 Apr 2023 07:02:54 +0200 Subject: lettering: preserve scale (#2230) --- lib/elements/satin_column.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/elements/satin_column.py') 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 -- cgit v1.2.3