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:
authorHans Goudey <h.goudey@me.com>2021-04-18 19:58:44 +0300
committerHans Goudey <h.goudey@me.com>2021-04-18 19:58:44 +0300
commit06888a8970b78f16c44f4393b937948853394315 (patch)
tree25d1bf28dbc135e4137f125c479ba9647356e72b
parent4bce9c5283e51818cdb7293f51a3b0ad02813169 (diff)
Fix compile warning
The order of the two parameters was incorrect.
-rw-r--r--source/blender/editors/space_outliner/outliner_tools.c2
1 files changed, 1 insertions, 1 deletions
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);