Fix T96705: Crash when pressing F3 outside a Blender window if Developer extras

If the mouse is not hovering the window, there is no active region. This is a
valid state, but the UI-list filter operator didn't account for that case.
This commit is contained in:
Julian Eisel 2022-03-22 18:35:28 +01:00 committed by Philipp Oeser
parent 97de02247a
commit 7cecb81e19
Notes: blender-bot 2023-02-14 03:46:57 +01:00
Referenced by issue #96705, Regression: Crash when pressing F3 outside a Blender window if Developer extras is on
Referenced by issue #96241, 3.1: Potential candidates for corrective releases
1 changed files with 3 additions and 0 deletions

View File

@ -1989,6 +1989,9 @@ static void UI_OT_drop_name(wmOperatorType *ot)
static bool ui_list_focused_poll(bContext *C)
{
const ARegion *region = CTX_wm_region(C);
if (!region) {
return false;
}
const wmWindow *win = CTX_wm_window(C);
const uiList *list = UI_list_find_mouse_over(region, win->eventstate);