Merge branch 'blender-v2.83-release'

This commit is contained in:
Campbell Barton 2020-05-18 21:29:23 +10:00
commit 80b340b034
1 changed files with 1 additions and 1 deletions

View File

@ -563,7 +563,7 @@ void wm_event_do_notifiers(bContext *C)
static int wm_event_always_pass(const wmEvent *event)
{
/* some events we always pass on, to ensure proper communication */
return ISTIMER(event->type) || (event->type == WINDEACTIVATE);
return ISTIMER(event->type) || (event->type == WINDEACTIVATE) || (event->type == EVT_FILESELECT);
}
/** \} */