summaryrefslogtreecommitdiff
path: root/lib/stitch_plan/stitch_group.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2021-12-09 15:05:21 +0100
committerGitHub <noreply@github.com>2021-12-09 15:05:21 +0100
commit36f7610cc0844a034ba068b549332cab3ef7b033 (patch)
treee63e66d8313df795d26efb42833f103f3554971a /lib/stitch_plan/stitch_group.py
parent41ace3a9e53b52b4271554d7aedd88d533ee5f5e (diff)
Force lock stitches option/extension and some typos (#1471)
Diffstat (limited to 'lib/stitch_plan/stitch_group.py')
-rw-r--r--lib/stitch_plan/stitch_group.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/stitch_plan/stitch_group.py b/lib/stitch_plan/stitch_group.py
index 98d9799e..21beebe1 100644
--- a/lib/stitch_plan/stitch_group.py
+++ b/lib/stitch_plan/stitch_group.py
@@ -17,11 +17,13 @@ class StitchGroup:
between them by the stitch plan generation code.
"""
- def __init__(self, color=None, stitches=None, trim_after=False, stop_after=False, tie_modus=0, stitch_as_is=False, tags=None):
+ def __init__(self, color=None, stitches=None, trim_after=False, stop_after=False,
+ tie_modus=0, force_lock_stitches=False, stitch_as_is=False, tags=None):
self.color = color
self.trim_after = trim_after
self.stop_after = stop_after
self.tie_modus = tie_modus
+ self.force_lock_stitches = force_lock_stitches
self.stitch_as_is = stitch_as_is
self.stitches = []