See #6307. Prevent user from manually changing the ifc file path.

You can still hover over and copy paste if you want.
This commit is contained in:
Dion Moult
2025-03-11 18:38:45 +11:00
parent bf54132805
commit 1e97d2c5fa
+3 -1
View File
@@ -324,7 +324,9 @@ class BIM_PT_project(Panel):
row.label(text=ProjectData.data["last_saved"])
row = self.layout.row(align=True)
row.prop(props, "ifc_file", text="")
col = row.column()
col.enabled = False
col.prop(props, "ifc_file", text="")
row.operator("bim.select_ifc_file", icon="FILE_FOLDER", text="")