diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2023-04-23 07:02:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-23 07:02:54 +0200 |
| commit | 16f52ca5dad2a7571cd46e4901c3a66637ad8b2c (patch) | |
| tree | 567722c1560d88737ebada152714d1b9b453ec0a /lib/stitch_plan/lock_stitch.py | |
| parent | df94082cefa05c98ae6da43ecf4a25437ae16b30 (diff) | |
lettering: preserve scale (#2230)
Diffstat (limited to 'lib/stitch_plan/lock_stitch.py')
| -rw-r--r-- | lib/stitch_plan/lock_stitch.py | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
