summaryrefslogtreecommitdiff
path: root/lib/elements/stroke.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-03-09 18:57:55 +0100
committerGitHub <noreply@github.com>2023-03-09 18:57:55 +0100
commitfd6e43cf00548f78daf8ae855f691279e3c90a3b (patch)
tree44774d59038213fb81e8906e61dfbd309aa17da8 /lib/elements/stroke.py
parentda1cd33f3b7fa6b85a6cdfcb855dc8a16cf3f92c (diff)
Various fixes (#2125)
* add unit info to scale value in ripple stitch * fix apply threadlist with empty description * fix satin type ripple with unequal nodes * fix legacy auto_fill conversion * inform about too small meander shapes
Diffstat (limited to 'lib/elements/stroke.py')
-rw-r--r--lib/elements/stroke.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/elements/stroke.py b/lib/elements/stroke.py
index 9fe6fee1..8f5a6347 100644
--- a/lib/elements/stroke.py
+++ b/lib/elements/stroke.py
@@ -285,6 +285,7 @@ class Stroke(EmbroideryElement):
_('Starting scale'),
tooltip=_('How big the first copy of the line should be, in percent.') + " " + _('Used only for ripple stitch with a guide line.'),
type='float',
+ unit='%',
default=100,
select_items=[('stroke_method', 1)],
sort_index=13)
@@ -296,6 +297,7 @@ class Stroke(EmbroideryElement):
_('Ending scale'),
tooltip=_('How big the last copy of the line should be, in percent.') + " " + _('Used only for ripple stitch with a guide line.'),
type='float',
+ unit='%',
default=0.0,
select_items=[('stroke_method', 1)],
sort_index=14)