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;
             }
           }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
List details, subscription details or unsubscribe:
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to