summaryrefslogtreecommitdiff
path: root/lib/elements
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2022-05-07 23:14:55 -0400
committerLex Neva <github.com@lexneva.name>2022-05-07 23:14:55 -0400
commitd0fc0e13261f5f37247570793dea726786df5456 (patch)
tree7102c90c711602469d29a5e2a3b5f2637dbcdd04 /lib/elements
parentb30fce85dbdb4097bb9e01c3d68a77e0c50dd80a (diff)
default to 'inner to outer'
Diffstat (limited to 'lib/elements')
-rw-r--r--lib/elements/fill_stitch.py4
1 files changed, 2 insertions, 2 deletions
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,