From 06888a8970b78f16c44f4393b937948853394315 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Sun, 18 Apr 2021 11:58:44 -0500 Subject: [PATCH] Fix compile warning The order of the two parameters was incorrect. --- source/blender/editors/space_outliner/outliner_tools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_outliner/outliner_tools.c b/source/blender/editors/space_outliner/outliner_tools.c index c7b46cd640b..456c2079f27 100644 --- a/source/blender/editors/space_outliner/outliner_tools.c +++ b/source/blender/editors/space_outliner/outliner_tools.c @@ -602,8 +602,8 @@ static uiBlock *merged_element_search_menu(bContext *C, ARegion *region, void *d NULL, merged_element_search_update_fn, data, - NULL, false, + NULL, merged_element_search_exec_fn, NULL); UI_but_flag_enable(but, UI_BUT_ACTIVATE_ON_INIT);