From 9b3f964000738ebb31f75b4875fce854a10f7f6c Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Tue, 23 Aug 2022 13:26:38 +1000 Subject: [PATCH] Fix #2060. Large lists of types in a library can now be filtered. --- src/blenderbim/blenderbim/bim/module/model/workspace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blenderbim/blenderbim/bim/module/model/workspace.py b/src/blenderbim/blenderbim/bim/module/model/workspace.py index c2a0fff83c..684a5b3142 100644 --- a/src/blenderbim/blenderbim/bim/module/model/workspace.py +++ b/src/blenderbim/blenderbim/bim/module/model/workspace.py @@ -89,7 +89,7 @@ class BimTool(WorkSpaceTool): row = layout.row(align=True) if relating_types_ids: row.label(text="", icon="FILE_3D") - row.prop(data=props, property="relating_type_id", text="") + prop_with_search(row, props, "relating_type_id", text="") else: row.label(text="No Construction Type", icon="FILE_3D") if ifc_classes: