From 0099b767d112815d867c09c96727f70f3ce87b12 Mon Sep 17 00:00:00 2001 From: Mario Voigt Date: Sun, 17 Oct 2021 23:38:31 +0200 Subject: [PATCH] fix typo --- extensions/fablabchemnitz/unwind_paths/unwind_paths.inx | 2 +- extensions/fablabchemnitz/unwind_paths/unwind_paths.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/fablabchemnitz/unwind_paths/unwind_paths.inx b/extensions/fablabchemnitz/unwind_paths/unwind_paths.inx index ad2bc66c..e698177e 100644 --- a/extensions/fablabchemnitz/unwind_paths/unwind_paths.inx +++ b/extensions/fablabchemnitz/unwind_paths/unwind_paths.inx @@ -5,7 +5,7 @@ - false + false false false diff --git a/extensions/fablabchemnitz/unwind_paths/unwind_paths.py b/extensions/fablabchemnitz/unwind_paths/unwind_paths.py index 4acead68..046ed252 100644 --- a/extensions/fablabchemnitz/unwind_paths/unwind_paths.py +++ b/extensions/fablabchemnitz/unwind_paths/unwind_paths.py @@ -39,7 +39,7 @@ class UnwindPaths(inkex.EffectExtension): def add_arguments(self, pars): pars.add_argument('--tab') - pars.add_argument('--keep_original', type=inkex.Boolean, default=False, help="If selected, the original paths get deleted") + pars.add_argument('--keep_original', type=inkex.Boolean, default=False, help="If not selected, the original paths get deleted") pars.add_argument('--break_apart', type=inkex.Boolean, default=False, help="Split each path into single curve segments") pars.add_argument('--break_only', type=inkex.Boolean, default=False, help="Only splits root paths into segments (no unwinding)") pars.add_argument('--colorize', type=inkex.Boolean, default=False, help="Colorize original paths and glue pairs")