[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [35610] trunk/blender/source/blender/ editors/space_sequencer/sequencer_edit.c: fix for [#26533] didnt take scene strips into account, tested copy/ pasting scene strips now works with audio.

Campbell Barton ideasman42 at gmail.com
Fri Mar 18 11:35:18 CET 2011


Revision: 35610
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=35610
Author:   campbellbarton
Date:     2011-03-18 10:35:17 +0000 (Fri, 18 Mar 2011)
Log Message:
-----------
fix for [#26533] didnt take scene strips into account, tested copy/pasting scene strips now works with audio.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c

Modified: trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c
===================================================================
--- trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c	2011-03-18 08:40:19 UTC (rev 35609)
+++ trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c	2011-03-18 10:35:17 UTC (rev 35610)
@@ -2684,6 +2684,9 @@
 			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);
+			}
 		}
 	}
 




More information about the Bf-blender-cvs mailing list