Fix T69910: crash when using a hotkey for a new or open recent file

Differential Revision: https://developer.blender.org/D5839
This commit is contained in:
Pedro Reis
2019-10-04 16:55:37 +02:00
committed by Brecht Van Lommel
parent 809ab298f1
commit eeba31e2ca

View File

@@ -2738,7 +2738,10 @@ static int wm_handlers_do_intern(bContext *C, wmEvent *event, ListBase *handlers
/* Clear the tool-tip whenever a key binding is handled, without this tool-tips
* are kept when a modal operators starts (annoying but otherwise harmless). */
if (action & WM_HANDLER_BREAK) {
WM_tooltip_clear(C, CTX_wm_window(C));
/* Window may be gone after file read. */
if (CTX_wm_window(C) != NULL) {
WM_tooltip_clear(C, CTX_wm_window(C));
}
}
}
else if (handler_base->type == WM_HANDLER_TYPE_UI) {