diff options
| author | Lex Neva <github.com@lexneva.name> | 2023-02-18 16:43:18 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2023-02-20 15:27:56 -0500 |
| commit | be699bf89255d98729b1d10f426acf8e852709b4 (patch) | |
| tree | fe2010ee718640d8abc909aac0777aa748615e6a /lib/elements/fill_stitch.py | |
| parent | 9ccf8b9b7780b997c1f801a87dafd99f86f048a1 (diff) | |
fix params for meander
Diffstat (limited to 'lib/elements/fill_stitch.py')
| -rw-r--r-- | lib/elements/fill_stitch.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 9b36497e..34588ba0 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -223,6 +223,7 @@ class FillStitch(EmbroideryElement): unit='mm', sort_index=6, type='float', + select_items=[('fill_method', 0), ('fill_method', 1), ('fill_method', 2), ('fill_method', 3)], default=0.25) def row_spacing(self): return max(self.get_float_param("row_spacing_mm", 0.25), 0.1 * PIXELS_PER_MM) @@ -239,6 +240,7 @@ class FillStitch(EmbroideryElement): unit='mm', sort_index=6, type='float', + select_items=[('fill_method', 0), ('fill_method', 1), ('fill_method', 2), ('fill_method', 3)], default=3.0) def max_stitch_length(self): return max(self.get_float_param("max_stitch_length_mm", 3.0), 0.1 * PIXELS_PER_MM) @@ -404,7 +406,7 @@ class FillStitch(EmbroideryElement): @property @param('running_stitch_length_mm', - _('Running stitch length (traversal between sections)'), + _('Running stitch length'), tooltip=_( 'Length of stitches around the outline of the fill region used when moving from section to section. Also used for meander fill.'), unit='mm', |
