From d0fc0e13261f5f37247570793dea726786df5456 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 7 May 2022 23:14:55 -0400 Subject: default to 'inner to outer' --- lib/elements/fill_stitch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/elements/fill_stitch.py') diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 58629085..c9d609b4 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -101,10 +101,10 @@ class FillStitch(EmbroideryElement): return self.get_int_param('fill_method', 0) @property - @param('contour_strategy', _('Contour Fill Strategy'), type='dropdown', default=1, + @param('contour_strategy', _('Contour Fill Strategy'), type='dropdown', default=0, options=[_("Inner to Outer"), _("Single spiral"), _("Double spiral")], select_items=[('fill_method', 1)], sort_index=3) def contour_strategy(self): - return self.get_int_param('contour_strategy', 1) + return self.get_int_param('contour_strategy', 0) @property @param('join_style', _('Join Style'), type='dropdown', default=0, -- cgit v1.2.3