Fixed bug in *::* processing.
This commit is contained in:
parent
57eb1f96e8
commit
8b70cd5a7b
1 changed files with 4 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue