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/stitch_plan/lock_stitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/stitch_plan') diff --git a/lib/stitch_plan/lock_stitch.py b/lib/stitch_plan/lock_stitch.py index bf760923..788e6377 100644 --- a/lib/stitch_plan/lock_stitch.py +++ b/lib/stitch_plan/lock_stitch.py @@ -98,7 +98,7 @@ class RelativeLock(LockStitchDefinition): direction = to_previous.unit() for delta in path: - lock_stitches.append(Stitch(stitches[0] + delta * length * direction, tags=('lock_stitch'))) + lock_stitches.append(Stitch(stitches[0] + delta * length * direction, tags=('lock_stitch',))) else: # Too short to travel part of the way to the previous stitch; just go # back and forth to it a couple times. -- cgit v1.3.1