summaryrefslogtreecommitdiff
path: root/lib/extensions/params.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-07-16 20:38:53 +0200
committerGitHub <noreply@github.com>2024-07-16 20:38:53 +0200
commitd9ed17d888c6e2324d653e50baf2057c49059512 (patch)
treee8e2e23703e4bfe226bd0b3cf09c214031b4a457 /lib/extensions/params.py
parentef1a483b2d9350aa8c69498c1ff3386e2c9e563e (diff)
satin and stroke presets (#3090)
Diffstat (limited to 'lib/extensions/params.py')
-rwxr-xr-xlib/extensions/params.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/extensions/params.py b/lib/extensions/params.py
index 9fe5582a..9a51226f 100755
--- a/lib/extensions/params.py
+++ b/lib/extensions/params.py
@@ -267,7 +267,10 @@ class ParamsTab(ScrolledPanel):
elif isinstance(self.param_inputs[name], wx.Choice):
self.param_inputs[name].SetSelection(int(value))
else:
- self.param_inputs[name].SetValue(value)
+ input = self.param_inputs[name]
+ if name == "satin_column" and input.Label == _('Running stitch along paths'):
+ value = not value
+ input.SetValue(value)
self.changed_inputs.add(self.param_inputs[name])
self.update_toggle_state()