Fixed default layer (should be 0, not 1)
This commit is contained in:
parent
152b943ea1
commit
a499d55004
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ class StyleChooser:
|
|||
pass
|
||||
else:
|
||||
ra[a]=b
|
||||
ra["layer"] = float(tags.get("layer",1))*100+ra.get("z-index",1)
|
||||
ra["layer"] = float(tags.get("layer",0))*100+ra.get("z-index",1)
|
||||
#print ra
|
||||
if "object-id" not in ra:
|
||||
ra["object-id"] = str(object_id)
|
||||
|
|
Loading…
Add table
Reference in a new issue