Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2016-03-02 06:05:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-03-02 06:09:16 +0300
commitd49985ce488f7d734ae727379e5bb4569a9dc700 (patch)
tree37cc50f9e1be0e69e9b08d58fe08f17aada7ba2b /source/blender/editors/interface/interface_templates.c
parent69b66d549bcc82b5667916e647d43578bada5dd2 (diff)
UI: Show categories in operator search popup
Gives better context especially when operators have generic names.
Diffstat (limited to 'source/blender/editors/interface/interface_templates.c')
-rw-r--r--source/blender/editors/interface/interface_templates.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c
index 079205b4f0d..af3080d39c4 100644
--- a/source/blender/editors/interface/interface_templates.c
+++ b/source/blender/editors/interface/interface_templates.c
@@ -3308,7 +3308,7 @@ static void operator_search_cb(const bContext *C, void *UNUSED(arg), const char
void UI_but_func_operator_search(uiBut *but)
{
UI_but_func_search_set(
- but, ui_searchbox_create_generic, operator_search_cb,
+ but, ui_searchbox_create_operator, operator_search_cb,
NULL, operator_call_cb, NULL);
}