summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-10-19 17:06:05 +0200
committerGitHub <noreply@github.com>2024-10-19 17:06:05 +0200
commitbd4d300ed70929b5975c18c77dc04deae9108675 (patch)
treee25922160680ad94c3996c6e734e465ce7460047
parentd9293893ab26f49f67a44a68dc80cf93b7136d5f (diff)
fix select redwork top layer (#3230)
-rw-r--r--lib/extensions/select_elements.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/select_elements.py b/lib/extensions/select_elements.py
index 2c2de242..2b3cb142 100644
--- a/lib/extensions/select_elements.py
+++ b/lib/extensions/select_elements.py
@@ -163,7 +163,7 @@ class SelectElements(InkstitchExtension):
element_id = element.node.get_id() or ''
conditions = {
'all': True,
- 'autorun-top': element_id.startswith('autorun'),
+ 'autorun-top': element_id.startswith('autorun') or element_id.startswith('redwork'),
'autorun-underpath': element_id.startswith('underpath'),
'autosatin-underpath': element_id.startswith('autosatinrun')}
return conditions[self.options.running_stitch_condition]