Fix bug in where IfcCountMeasure and similar properties were not editable

This commit is contained in:
Dion Moult
2021-02-24 16:21:27 +11:00
parent 3bee746f49
commit 28c2d7248e
@@ -175,6 +175,8 @@ class Data:
data_type = "string"
elif "<real>" in data_type:
data_type = "float"
elif "<number>" in data_type:
data_type = "integer"
elif "<integer>" in data_type:
data_type = "integer"
elif "<boolean>" in data_type: