ifcfm operators - add info message when it's finished

This commit is contained in:
Andrej730
2024-11-06 15:42:21 +05:00
parent 47853bc551
commit ecdbcff1aa
@@ -78,6 +78,7 @@ class ExecuteIfcFM(bpy.types.Operator):
writer.write_ods(filepath)
elif props.format == "xlsx":
writer.write_xlsx(filepath)
self.report({"INFO"}, "IfcFM spreadsheet is saved.")
return {"FINISHED"}
@@ -134,4 +135,5 @@ class ExecuteIfcFMFederate(bpy.types.Operator):
writer.write_ods(self.filepath)
elif props.format == "xlsx":
writer.write_xlsx(self.filepath)
self.report({"INFO"}, "IfcFM spreadsheets is saved.")
return {"FINISHED"}