Minor fix where bSDD didn't load IFC properties

This commit is contained in:
Dion Moult
2024-07-06 15:40:25 +10:00
parent 2a808318bf
commit accb1890dc
+1 -1
View File
@@ -90,7 +90,7 @@ class Bsdd(blenderbim.core.tool.Bsdd):
psets = {}
for prop in properties:
if prop.get("propertyDictionaryName") == "IFC":
if prop.get("propertyDictionaryName") != "IFC":
continue
pset = prop.get("propertySet", None)
if not pset: