summaryrefslogtreecommitdiff
path: root/lib/extensions/params.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/extensions/params.py')
-rwxr-xr-xlib/extensions/params.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/extensions/params.py b/lib/extensions/params.py
index fd4af28f..28b524d6 100755
--- a/lib/extensions/params.py
+++ b/lib/extensions/params.py
@@ -247,6 +247,10 @@ class ParamsTab(ScrolledPanel):
def apply(self):
values = self.get_values()
for node in self.nodes:
+ if "satin_column" in values.keys() and values["satin_column"] is True and node.stroke_width < 0.3 * PIXELS_PER_MM:
+ # when we apply satin columns, strokes (running stitches) are not rendered in the simulator
+ # and we also don't want to set any of the chosen values to these elements as this may lead to unexpected rendering results
+ continue
for name, value in values.items():
node.set_param(name, value)