diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-06-29 21:26:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-29 21:26:03 -0400 |
| commit | 4d7b07ff02e13f237fac8eb8715fe4a6324ea6dc (patch) | |
| tree | f1c29df5f29d5bfefb48513043116b73209f202d /lib/extensions/params.py | |
| parent | 7c8cd648a36e10e5ebfb94ce27be76e5ba47f334 (diff) | |
| parent | de4ead1ad467997fa81a4459e194769dfab185e2 (diff) | |
Merge pull request #212 from inkstitch/lexelby-fill-markers
fill start/end
Diffstat (limited to 'lib/extensions/params.py')
| -rw-r--r-- | lib/extensions/params.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/extensions/params.py b/lib/extensions/params.py index 9d8de41b..58fedd6b 100644 --- a/lib/extensions/params.py +++ b/lib/extensions/params.py @@ -19,6 +19,7 @@ from ..stitch_plan import patches_to_stitch_plan from ..elements import EmbroideryElement, Fill, AutoFill, Stroke, SatinColumn from ..utils import save_stderr, restore_stderr from ..simulator import EmbroiderySimulator +from ..commands import is_command def presets_path(): @@ -655,7 +656,7 @@ class Params(InkstitchExtension): classes.append(AutoFill) classes.append(Fill) - if element.get_style("stroke"): + if element.get_style("stroke") and not is_command(node): classes.append(Stroke) if element.get_style("stroke-dasharray") is None: |
