diff options
| author | Lex Neva <github.com@lexneva.name> | 2019-03-21 21:07:48 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2019-03-21 21:09:03 -0400 |
| commit | e7a8a3677b805d338362be6556aa702d40791fa2 (patch) | |
| tree | 7fbb9a7b9d08c8008109f0169457b2856d318bff /lib/elements/auto_fill.py | |
| parent | eada4bed7eb5cf8671eed8e208889db88552815b (diff) | |
put underlay underpath checkbox in the right tab
Diffstat (limited to 'lib/elements/auto_fill.py')
| -rw-r--r-- | lib/elements/auto_fill.py | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/elements/auto_fill.py b/lib/elements/auto_fill.py index e78943ec..a30bb6df 100644 --- a/lib/elements/auto_fill.py +++ b/lib/elements/auto_fill.py @@ -131,13 +131,15 @@ class AutoFill(Fill): return self.get_boolean_param('underpath', True) @property - @param('underlay_underpath', - _('Underpath'), - tooltip=_('Travel inside the shape when moving from section to section. Underpath ' - 'stitches avoid traveling in the direction of the row angle so that they ' - 'are not visible. This gives them a jagged appearance.'), - type='boolean', - default=False) + @param( + 'underlay_underpath', + _('Underpath'), + tooltip=_('Travel inside the shape when moving from section to section. Underpath ' + 'stitches avoid traveling in the direction of the row angle so that they ' + 'are not visible. This gives them a jagged appearance.'), + group=_('AutoFill Underlay'), + type='boolean', + default=False) def underlay_underpath(self): return self.get_boolean_param('underpath', False) |
