From 4dbec59b9cc242326e4558557a0b13a3d1cfefc7 Mon Sep 17 00:00:00 2001 From: Ryan Schultz Date: Sat, 28 Jun 2025 09:17:40 -0500 Subject: [PATCH] Fix #6840: Add search to profile selection, when creating a new extrusion type --- src/bonsai/bonsai/bim/module/root/operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bonsai/bonsai/bim/module/root/operator.py b/src/bonsai/bonsai/bim/module/root/operator.py index f5eca09500..e334be936b 100644 --- a/src/bonsai/bonsai/bim/module/root/operator.py +++ b/src/bonsai/bonsai/bim/module/root/operator.py @@ -779,6 +779,6 @@ class AddElement(bpy.types.Operator, tool.Ifc.Operator): row.prop(props, "representation_obj", text="Object") elif props.representation_template == "PROFILESET": row = self.layout.row() - row.prop(props, "profile", text="Profile") + prop_with_search(self.layout, props, "profile", text="Profile", should_click_ok=True) if props.representation_template != "EMPTY": prop_with_search(self.layout, props, "contexts", should_click_ok=True)