summaryrefslogtreecommitdiff
path: root/lib/svg
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-04-27 20:00:59 +0200
committerGitHub <noreply@github.com>2023-04-27 20:00:59 +0200
commitd458ea563b1adc39000e4c362ca3d2b28f2deefa (patch)
tree9ce440b304705bb297e310ea8c8f5df629bfb524 /lib/svg
parent675898a602e60d69bf3e161d16450338ba0780bf (diff)
Ripple stitch: add density and stagger option (#2206)
Diffstat (limited to 'lib/svg')
-rw-r--r--lib/svg/tags.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/svg/tags.py b/lib/svg/tags.py
index ba8bf558..f114d159 100644
--- a/lib/svg/tags.py
+++ b/lib/svg/tags.py
@@ -109,6 +109,7 @@ inkstitch_attribs = [
'cutwork_needle',
# ripples
'line_count',
+ 'min_line_dist_mm',
'exponent',
'flip_exponent',
'skip_start',
@@ -117,7 +118,7 @@ inkstitch_attribs = [
'scale_start',
'scale_end',
'rotate_ripples',
- 'grid_size',
+ 'grid_size_mm',
# satin column
'satin_column',
'satin_method',
@@ -157,6 +158,8 @@ inkstitch_attribs = [
'stop_after',
'random_seed',
'manual_stitch',
+ # legacy
+ 'grid_size'
]
for attrib in inkstitch_attribs:
INKSTITCH_ATTRIBS[attrib] = inkex.addNS(attrib, 'inkstitch')