Fix compile warning

The order of the two parameters was incorrect.
This commit is contained in:
Hans Goudey 2021-04-18 11:58:44 -05:00
parent 4bce9c5283
commit 06888a8970
Notes: blender-bot 2023-02-14 03:34:17 +01:00
Referenced by issue #85977, NVidia: Random crashes in 'DrvPresentBuffers'
1 changed files with 1 additions and 1 deletions

View File

@ -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);