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/windowmanager/intern
parent69b66d549bcc82b5667916e647d43578bada5dd2 (diff)
UI: Show categories in operator search popup
Gives better context especially when operators have generic names.
Diffstat (limited to 'source/blender/windowmanager/intern')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 16f12d41b06..179677a0cb1 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -1945,7 +1945,7 @@ static int wm_search_menu_invoke(bContext *C, wmOperator *UNUSED(op), const wmEv
{
struct SearchPopupInit_Data data = {
.size = {
- UI_searchbox_size_x(),
+ UI_searchbox_size_x() * 2,
UI_searchbox_size_y(),
},
};