Skip to content

Commit

Permalink
Fix again ghost style
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmi committed Dec 17, 2020
1 parent 5a6fcb6 commit 4ae8fad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terra_layer/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ def generate_style_from_wizard(geo_layer, config):
style_type = prop_config.get("type", "none")

# Ignore style from other representation
if not map_style_type.replace("-", "_") in map_field:
if not map_field.replace('fill_extrusion', 'extrusion').startswith(map_style_type.replace("fill-extrusion", "extrusion")):
continue

map_style_prop = to_map_style(map_field)
Expand Down

0 comments on commit 4ae8fad

Please sign in to comment.