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:
authorCampbell Barton <ideasman42@gmail.com>2011-03-18 13:35:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-18 13:35:17 +0300
commit0a52b86d5019df3806b58da7910ef646a340936e (patch)
tree54bde3f72bc9c95cfb0c5b0347db83dce50c6af6
parentac1fa5bb4233cd9e75b7b1a01930bd2827ba53bc (diff)
fix for [#26533] didnt take scene strips into account, tested copy/pasting scene strips now works with audio.
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 7f6b4d57961..b14904672d0 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -2684,6 +2684,9 @@ static int sequencer_paste_exec(bContext *C, wmOperator *UNUSED(op))
if(iseq->sound) {
iseq->scene_sound = sound_add_scene_sound(scene, iseq, iseq->startdisp, iseq->enddisp, iseq->startofs + iseq->anim_startofs);
}
+ if(iseq->scene) {
+ sound_scene_add_scene_sound(scene, iseq, iseq->startdisp, iseq->enddisp, iseq->startofs + iseq->anim_startofs);
+ }
}
}