Fill and Stroke are not mutually exclusive

pull/4/head
Lex Neva 2016-12-24 19:18:41 +00:00
rodzic 3afd6e500f
commit 2c2c58e572
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -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: