From 8b3ae3da12af0c7c1cec44ec18960d9a6e12d8e2 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 11 Mar 2023 15:54:49 -0500 Subject: inkscape only cares if the insensitive attribute is present --- lib/extensions/stitch_plan_preview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.3