Fix frame overlay not refreshing the sequencer preview

Regression in 46aa70cb48
This commit is contained in:
Campbell Barton 2021-10-18 15:47:29 +11:00
parent e538b2c3a3
commit f5edc69150
1 changed files with 1 additions and 1 deletions

View File

@ -581,7 +581,7 @@ void wm_event_do_notifiers(bContext *C)
if ((note->category == NC_SPACE) && note->reference) {
/* Filter out notifiers sent to other spaces. RNA sets the reference to the owning ID
* though, the screen, so let notifiers through that reference the entire screen. */
if (!ELEM(note->reference, area->spacedata.first, screen)) {
if (!ELEM(note->reference, area->spacedata.first, screen, scene)) {
continue;
}
}