summaryrefslogtreecommitdiff
path: root/embroider_params.py
diff options
context:
space:
mode:
authorLex Neva <github@lexneva.name>2016-12-24 19:18:41 +0000
committerLex Neva <github@lexneva.name>2016-12-24 19:18:41 +0000
commit2c2c58e5728dfb471ed8bf0ff591fdaf7b5a7c80 (patch)
treec23cc8f872e909cc5f1490d3d682e9f9c29a48ae /embroider_params.py
parent3afd6e500fe14be8f430db0ba0e257551fa00695 (diff)
Fill and Stroke are not mutually exclusive
Diffstat (limited to 'embroider_params.py')
-rw-r--r--embroider_params.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/embroider_params.py b/embroider_params.py
index 7116bd41..83f30c9c 100644
--- a/embroider_params.py
+++ b/embroider_params.py
@@ -477,7 +477,8 @@ class EmbroiderParams(inkex.Effect):
if element.get_style("fill"):
classes.append(AutoFill)
classes.append(Fill)
- elif element.get_style("stroke"):
+
+ if element.get_style("stroke"):
classes.append(Stroke)
if element.get_style("stroke-dasharray") is None: