Fixed default layer (should be 0, not 1)

This commit is contained in:
Komяpa 2010-07-16 21:52:25 +03:00
parent 152b943ea1
commit a499d55004

View file

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