Fixed bug in *::* processing.

This commit is contained in:
vng 2014-01-23 16:41:43 +03:00
parent 57eb1f96e8
commit 8b70cd5a7b

View file

@ -181,9 +181,10 @@ class StyleChooser:
x["object-id"] = oid
if oid == "::*":
hasall = True
if x.get("object-id") == ra["object-id"]:
x.update(ra)
break
else:
if x.get("object-id") == ra["object-id"]:
x.update(ra)
break
else:
if not hasall:
allinit.update(ra)