diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-05-24 12:15:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-24 12:15:49 +0200 |
| commit | cf0356a6f38ca18b28b22d9f8e6b5bc8d3f01e19 (patch) | |
| tree | 3905c67cceac7fda89c94bec16ff4334896f0123 /lib/elements/clone.py | |
| parent | 8b92b0333d5b8b2c8f0482c17a8345149d03f777 (diff) | |
fix boolean param (#2942)
Diffstat (limited to 'lib/elements/clone.py')
| -rw-r--r-- | lib/elements/clone.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/elements/clone.py b/lib/elements/clone.py index d5c146ef..55f6465b 100644 --- a/lib/elements/clone.py +++ b/lib/elements/clone.py @@ -59,7 +59,8 @@ class Clone(EmbroideryElement): _('Flip angle'), tooltip=_( "Flip automatically calculated angle if it appears to be wrong."), - type='boolean') + type='boolean', + default=False) @cache def flip_angle(self): return self.get_boolean_param('flip_angle', False) |
