[Bf-blender-cvs] [8f36cfd0209] temp-lanpr-cleanup: Fix T69352: Audio strips don't update when changing `frame_start`

Richard Antalik noreply at git.blender.org
Wed Sep 25 03:50:21 CEST 2019


Commit: 8f36cfd020935b3cfce31359de5e7067c42ea995
Author: Richard Antalik
Date:   Sat Sep 21 17:28:08 2019 -0700
Branches: temp-lanpr-cleanup
https://developer.blender.org/rB8f36cfd020935b3cfce31359de5e7067c42ea995

Fix T69352: Audio strips don't update when changing `frame_start`

Tag depsgraph update as a part of cache invalidation.

Author: mdewanchand

Reviewed By: ISS

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

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

M	source/blender/blenkernel/intern/sequencer.c

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

diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index 2e36982f7d8..497eefe34ee 100644
--- a/source/blender/blenkernel/intern/sequencer.c
+++ b/source/blender/blenkernel/intern/sequencer.c
@@ -4349,6 +4349,7 @@ static void sequence_invalidate_cache(Scene *scene,
   }
 
   sequence_do_invalidate_dependent(scene, seq, &ed->seqbase);
+  DEG_id_tag_update(&scene->id, ID_RECALC_SEQUENCER_STRIPS);
   BKE_sequencer_prefetch_stop(scene);
 }



More information about the Bf-blender-cvs mailing list