Skip to content
This repository was archived by the owner on Nov 24, 2024. It is now read-only.

Commit b9af490

Browse files
committed
Fix bug where selecting the IFC file for drawing generation didn't work
1 parent ce6350a commit b9af490

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/ifcblenderexport/blenderbim/bim

src/ifcblenderexport/blenderbim/bim/ui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ def draw(self, context):
10731073
for index, ifc_file in enumerate(props.ifc_files):
10741074
row = layout.row(align=True)
10751075
row.prop(ifc_file, "name", text="IFC #{}".format(index + 1))
1076-
row.operator("bim.select_doc_ifc_file", icon="FILE_FOLDER", text="")
1076+
row.operator("bim.select_doc_ifc_file", icon="FILE_FOLDER", text="").index = index
10771077
row.operator("bim.remove_ifc_file", icon="X", text="").index = index
10781078

10791079

0 commit comments

Comments
 (0)