From a71ec6e4599e28dfac45d2df3575976dffbb25d6 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Tue, 19 Aug 2025 17:44:28 +0200 Subject: do not overwrite stroke params with satin column values (#3927) --- lib/extensions/params.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib') 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) -- cgit v1.2.3