From a16694b35e9cbe427682ee6b282b408f1884a6f1 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Thu, 24 Aug 2023 07:58:46 +0300 Subject: [PATCH] Fix fill-color: none; handling. Fixes #19. Signed-off-by: Konstantin Pastbin --- src/mapcss/StyleChooser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mapcss/StyleChooser.py b/src/mapcss/StyleChooser.py index e307971..9d3518e 100644 --- a/src/mapcss/StyleChooser.py +++ b/src/mapcss/StyleChooser.py @@ -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):