summaryrefslogtreecommitdiff
path: root/lib/elements/fill_stitch.py
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2023-01-28 21:30:45 -0500
committerLex Neva <github.com@lexneva.name>2023-02-20 15:27:55 -0500
commit6612d10689e8f5238f34d68e9a9cde53371685a5 (patch)
treeb4d5dd0f055e4b7af16a48811be6552bc2206746 /lib/elements/fill_stitch.py
parentdde09ac938c4d111f6a3c11be5414383b2373bc5 (diff)
avoid super-dense meander graph
Diffstat (limited to 'lib/elements/fill_stitch.py')
-rw-r--r--lib/elements/fill_stitch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py
index 790eec5c..46f04edc 100644
--- a/lib/elements/fill_stitch.py
+++ b/lib/elements/fill_stitch.py
@@ -168,7 +168,7 @@ class FillStitch(EmbroideryElement):
@property
@param('meander_scale_percent', _('Meander pattern scale'), type='float', unit="%", default=100, select_items=[('fill_method', 4)], sort_index=4)
def meander_scale(self):
- return np.maximum(self.get_split_float_param('meander_scale_percent', (100, 100)), (10, 10)) / 100
+ return np.maximum(self.get_split_float_param('meander_scale_percent', (100, 100)), (30, 30)) / 100
@property
@param('meander_padding_mm', _('Meander padding'), type='float', unit="mm", default=0, select_items=[('fill_method', 4)], sort_index=5)