[Bf-blender-cvs] [f5edc691509] master: Fix frame overlay not refreshing the sequencer preview

Campbell Barton noreply at git.blender.org
Mon Oct 18 06:48:44 CEST 2021


Commit: f5edc6915094c6632580a0340a4ed95fdfd865ab
Author: Campbell Barton
Date:   Mon Oct 18 15:47:29 2021 +1100
Branches: master
https://developer.blender.org/rBf5edc6915094c6632580a0340a4ed95fdfd865ab

Fix frame overlay not refreshing the sequencer preview

Regression in 46aa70cb486d719139ac43e5c9ac4b0fe998e202

===================================================================

M	source/blender/windowmanager/intern/wm_event_system.c

===================================================================

diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c
index b86d639dc4c..f07f2637a74 100644
--- a/source/blender/windowmanager/intern/wm_event_system.c
+++ b/source/blender/windowmanager/intern/wm_event_system.c
@@ -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;
             }
           }



More information about the Bf-blender-cvs mailing list