Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Antalik <richardantalik@gmail.com>2020-06-26 17:59:01 +0300
committerRichard Antalik <richardantalik@gmail.com>2020-06-26 18:00:47 +0300
commite6e67da4ea5026a26e0a1ead19ae91412a74bc4d (patch)
tree7f4b0e5115d7e47932f0fe7387290f194102ea82 /source/blender/editors/space_sequencer
parent4006cd2d2cf5c8ab23d60f160ea884e6fd3fc01f (diff)
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
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c1
1 files changed, 1 insertions, 0 deletions
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);