Fix fill-color: none; handling. #20

Merged
root merged 1 commit from pastk-fix-fill-color-none into master 2023-08-24 05:13:19 +00:00

View file

@ -30,7 +30,7 @@ def make_nice_style(r):
"checking and nicifying style table"
if type(b) == TYPE_EVAL:
ra[a] = b
elif "color" in a:
elif "color" in a and b.strip() != 'none':
"parsing color value to 3-tuple"
# print "res:", b
if b and (type(b) != tuple):