From 6c5920f48e621cbd5ed36c1b46b73ab1d147500d Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Mon, 29 May 2023 22:00:09 -0400 Subject: default more likely to avoid stitching outside shape --- lib/elements/fill_stitch.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lib/elements') 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) -- cgit v1.2.3