BIM: Fix IFC type assignment not being saved to file
As the title says, this is simple fix - basically right now anytime user changed Link property to point to proper IFC type, we weren't writing to the IFC file buffer to finally write it to the file if user would save it. So this patch makes sure we write to this buffer by calling appropriate function, and making ifc object have proper pointer to IFC type.
This commit is contained in:
committed by
Yorik van Havre
parent
99da2e07c4
commit
ea006aba10
@@ -65,6 +65,7 @@ class ifc_object:
|
||||
elif prop == "Schema":
|
||||
self.edit_schema(obj, obj.Schema)
|
||||
elif prop == "Type":
|
||||
self.edit_type(obj)
|
||||
self.assign_classification(obj)
|
||||
elif prop == "Classification":
|
||||
self.edit_classification(obj)
|
||||
|
||||
Reference in New Issue
Block a user