Add tooltips to IFC Project Info and Clash Sets Panels

This commit is contained in:
Trashman247
2023-03-25 17:29:23 -07:00
committed by Dion Moult
parent b9c99b35a5
commit f1d6e95e51
2 changed files with 11 additions and 0 deletions
@@ -548,6 +548,7 @@ class UnloadProject(bpy.types.Operator):
bl_idname = "bim.unload_project"
bl_label = "Unload Project"
bl_options = {"REGISTER", "UNDO"}
bl_description = "Unload the IFC project"
def execute(self, context):
IfcStore.purge()
@@ -811,6 +812,7 @@ class ExportIFC(bpy.types.Operator):
bl_idname = "export_ifc.bim"
bl_label = "Export IFC"
bl_options = {"REGISTER", "UNDO"}
bl_description = "Export the IFC project"
filename_ext = ".ifc"
filter_glob: bpy.props.StringProperty(default="*.ifc;*.ifczip;*.ifcxml;*.ifcjson", options={"HIDDEN"})
filepath: bpy.props.StringProperty(subtype="FILE_PATH")