Fix #6840: Add search to profile selection, when creating a new extrusion type

This commit is contained in:
Ryan Schultz
2025-06-28 09:17:40 -05:00
parent dcf69c46e5
commit 4dbec59b9c
@@ -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)