[Bf-blender-cvs] [767b49e4924] blender2.8: Fix: missing sequencer update

Jacques Lucke noreply at git.blender.org
Tue Oct 23 14:05:15 CEST 2018


Commit: 767b49e49249cbc6679f79e1241d7a55749ab64c
Author: Jacques Lucke
Date:   Tue Oct 23 14:03:57 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB767b49e49249cbc6679f79e1241d7a55749ab64c

Fix: missing sequencer update

This should be fixed differently in the future. Read D3821 for more details.

Reviewers: brecht

Differential Revision: https://developer.blender.org/D3821

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

M	source/blender/makesrna/intern/rna_sequencer.c

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

diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index 2fc5bab084a..ec5a41995a4 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -125,6 +125,7 @@ static void rna_Sequence_update(Main *UNUSED(bmain), Scene *UNUSED(scene), Point
 		Sequence *seq = (Sequence *) ptr->data;
 
 		BKE_sequence_invalidate_cache(scene, seq);
+		WM_main_add_notifier(NC_SCENE | ND_SEQUENCER, scene);
 	}
 }



More information about the Bf-blender-cvs mailing list