diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2022-04-24 08:27:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-24 08:27:42 +0200 |
| commit | f9d57f6ea51ea8da186c41b70950b7d87fa2c20b (patch) | |
| tree | 7c2664fc201933b64cc224adb28ff717e6f08c61 /lib/extensions/cutwork_segmentation.py | |
| parent | 4058712139b56a2419e01db700581b3c9554a88a (diff) | |
Fix lettering scale, etc. (#1620)
* fix lettering scale
* adapt to updated inkex: transform operator, selections
* fix #1597
* no traceback error message on broken satin columns
* highlight troubleshoot "steps to solve" through additional headline
* set a minimum value for running stitch repeats
* rename "import" thread list to "apply" thread list
Diffstat (limited to 'lib/extensions/cutwork_segmentation.py')
| -rw-r--r-- | lib/extensions/cutwork_segmentation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/cutwork_segmentation.py b/lib/extensions/cutwork_segmentation.py index 1b0c568e..672aeade 100644 --- a/lib/extensions/cutwork_segmentation.py +++ b/lib/extensions/cutwork_segmentation.py @@ -43,7 +43,7 @@ class CutworkSegmentation(InkstitchExtension): self.arg_parser.add_argument("-k", "--keep_original", type=inkex.Boolean, default=False, dest="keep_original") def effect(self): - if not self.svg.selected: + if not self.svg.selection: inkex.errormsg(_("Please select one or more stroke elements.")) return |
