diff options
| author | Lex Neva <github.com@lexneva.name> | 2023-02-08 14:44:26 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2023-02-20 15:27:55 -0500 |
| commit | 49d39d6169268ad81ec5ada19982c234b4657fd3 (patch) | |
| tree | 61b21d41b1d966efd2cb52e2f3ab9dc4888c4a63 /lib | |
| parent | 9ea61ef3f33b76f199843fff82d1d624903aa11d (diff) | |
expose Expand setting in meander
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/elements/fill_stitch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 7c214798..466e7efb 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -503,12 +503,12 @@ class FillStitch(EmbroideryElement): @property @param('expand_mm', _('Expand'), - tooltip=_('Expand the shape before fill stitching, to compensate for gaps between shapes.'), + tooltip=_('Expand the shape before fill stitching, to compensate for gaps between shapes. Negative values contract instead.'), unit='mm', type='float', default=0, sort_index=5, - select_items=[('fill_method', 0), ('fill_method', 2)]) + select_items=[('fill_method', 0), ('fill_method', 2), ('fill_method', 4)]) def expand(self): return self.get_float_param('expand_mm', 0) |
