diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2023-07-03 19:55:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-03 19:55:19 -0400 |
| commit | 1301b02c0d8c462810e55c39970d77535fbd1adc (patch) | |
| tree | 33962fa581ccc47cac98967948552193bbbf1471 /lib/elements | |
| parent | f8df02ff9eccb740c193c0af9707d5b9cc41dac0 (diff) | |
| parent | 72a0a7384fb61daa2cc5ce4082cf1ff222831710 (diff) | |
Merge pull request #2346 from inkstitch/lexelby/fill-clamp-and-smooth
auto-fill clamp and smooth
Diffstat (limited to 'lib/elements')
| -rw-r--r-- | lib/elements/fill_stitch.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 80e68247..b93d7ff5 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -364,12 +364,11 @@ class FillStitch(EmbroideryElement): @property @param('running_stitch_tolerance_mm', _('Running stitch tolerance'), - tooltip=_('All stitches must be within this distance of the path. ' + - 'A lower tolerance means stitches will be closer together. ' + - 'A higher tolerance means sharp corners may be rounded.'), + tooltip=_('Determines how hard Ink/Stitch tries to avoid stitching outside the shape.' + + 'Lower numbers are less likely to stitch outside the shape but require more stitches.'), unit='mm', type='float', - default=0.2, + default=0.1, sort_index=32) def running_stitch_tolerance(self): return max(self.get_float_param("running_stitch_tolerance_mm", 0.2), 0.01) |
