diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-10-19 17:06:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-19 17:06:05 +0200 |
| commit | bd4d300ed70929b5975c18c77dc04deae9108675 (patch) | |
| tree | e25922160680ad94c3996c6e734e465ce7460047 /lib/extensions | |
| parent | d9293893ab26f49f67a44a68dc80cf93b7136d5f (diff) | |
fix select redwork top layer (#3230)
Diffstat (limited to 'lib/extensions')
| -rw-r--r-- | lib/extensions/select_elements.py | 2 |
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] |
