diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2023-03-12 15:29:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-12 15:29:12 -0400 |
| commit | aca54673afa8ac9e00f73fc5dc8d497c36f6f1ff (patch) | |
| tree | 5c1278ac676abf4c02ebe39f25c64f3a66174ec6 /lib | |
| parent | 383a51f32859ad09fa8349872910b9b2ec1fcd87 (diff) | |
| parent | 8b3ae3da12af0c7c1cec44ec18960d9a6e12d8e2 (diff) | |
Merge pull request #2137 from inkstitch/lexelby/fix-insensitive
fix "lock" checkbox in stitch plan preview
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/extensions/stitch_plan_preview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/stitch_plan_preview.py b/lib/extensions/stitch_plan_preview.py index 2468fc84..e5d22fa7 100644 --- a/lib/extensions/stitch_plan_preview.py +++ b/lib/extensions/stitch_plan_preview.py @@ -62,7 +62,7 @@ class StitchPlanPreview(InkstitchExtension): if self.options.insensitive is True: layer.set(SODIPODI_INSENSITIVE, True) else: - layer.set(SODIPODI_INSENSITIVE, False) + layer.pop(SODIPODI_INSENSITIVE) # translate stitch plan to the right side of the canvas if self.options.move_to_side: |
