diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2025-03-10 08:21:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-10 08:21:18 +0100 |
| commit | 51952d1f2a7cf5829ab2a6b6d4556dca3af14239 (patch) | |
| tree | 62dfe36dc6190a792e27d7e2259db639a891a296 /lib/elements | |
| parent | fb35ec4d4a170d0526c45d4ca5c5e03691d5ffc5 (diff) | |
Rewrite force lock stitch extension (#3559)
* rewrite force lock stitch extension
* do not add forced lock stitch before color change
Diffstat (limited to 'lib/elements')
| -rw-r--r-- | lib/elements/satin_column.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py index 3aa54f90..de04579c 100644 --- a/lib/elements/satin_column.py +++ b/lib/elements/satin_column.py @@ -1807,6 +1807,8 @@ class SatinColumn(EmbroideryElement): @property def first_stitch(self): + if self.start_at_nearest_point: + return None return shgeo.Point(self.flattened_rails[0].coords[0]) def start_point(self, last_stitch_group): |
