Differential D11057 Diff 36450 source/blender/editors/interface/interface_template_search_operator.c
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/interface/interface_template_search_operator.c
| Show First 20 Lines • Show All 115 Lines • ▼ Show 20 Lines | |||||
| void UI_but_func_operator_search(uiBut *but) | void UI_but_func_operator_search(uiBut *but) | ||||
| { | { | ||||
| UI_but_func_search_set(but, | UI_but_func_search_set(but, | ||||
| ui_searchbox_create_operator, | ui_searchbox_create_operator, | ||||
| operator_search_update_fn, | operator_search_update_fn, | ||||
| NULL, | NULL, | ||||
| false, | false, | ||||
| NULL, | |||||
| operator_search_exec_fn, | operator_search_exec_fn, | ||||
| NULL); | NULL); | ||||
| } | } | ||||
| void uiTemplateOperatorSearch(uiLayout *layout) | void uiTemplateOperatorSearch(uiLayout *layout) | ||||
| { | { | ||||
| uiBlock *block; | uiBlock *block; | ||||
| uiBut *but; | uiBut *but; | ||||
| Show All 11 Lines | |||||