summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2023-02-08 14:44:26 -0500
committerLex Neva <github.com@lexneva.name>2023-02-20 15:27:55 -0500
commit49d39d6169268ad81ec5ada19982c234b4657fd3 (patch)
tree61b21d41b1d966efd2cb52e2f3ab9dc4888c4a63 /lib
parent9ea61ef3f33b76f199843fff82d1d624903aa11d (diff)
expose Expand setting in meander
Diffstat (limited to 'lib')
-rw-r--r--lib/elements/fill_stitch.py4
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)