[Bf-blender-cvs] [e6e67da4ea5] master: Fix T78129: No audio playback with sound strip pasted to a new scene

Richard Antalik noreply at git.blender.org
Fri Jun 26 17:00:57 CEST 2020


Commit: e6e67da4ea5026a26e0a1ead19ae91412a74bc4d
Author: Richard Antalik
Date:   Fri Jun 26 16:59:01 2020 +0200
Branches: master
https://developer.blender.org/rBe6e67da4ea5026a26e0a1ead19ae91412a74bc4d

Fix T78129: No audio playback with sound strip pasted to a new scene

Add DEG_relations_tag_update(bmain).

Reviewed By: sergey

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

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

M	source/blender/editors/space_sequencer/sequencer_edit.c

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

diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 2c8c928c65c..f74a4eae3bb 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -3472,6 +3472,7 @@ static int sequencer_paste_exec(bContext *C, wmOperator *UNUSED(op))
   }
 
   DEG_id_tag_update(&scene->id, ID_RECALC_SEQUENCER_STRIPS);
+  DEG_relations_tag_update(bmain);
   WM_event_add_notifier(C, NC_SCENE | ND_SEQUENCER, scene);
   ED_outliner_select_sync_from_sequence_tag(C);



More information about the Bf-blender-cvs mailing list