== Sequencer ==

Current SVN crashes, if we are using hard-cuts on multicam tracks. Changing to soft cuts for now 
(since it should be the same for effect strips anyways...)
This commit is contained in:
Peter Schlaile 2010-05-30 20:04:24 +00:00
parent fe83427cc9
commit b8f3a1f4fe

@ -101,7 +101,7 @@ class SequencerCutMulticam(bpy.types.Operator):
s.selected = True
cfra = context.scene.frame_current
bpy.ops.sequencer.cut(frame=cfra, type='HARD', side='RIGHT')
bpy.ops.sequencer.cut(frame=cfra, type='SOFT', side='RIGHT')
for s in context.scene.sequence_editor.sequences_all:
if s.selected and s.type == 'MULTICAM' and s.frame_final_start <= cfra and cfra < s.frame_final_end:
context.scene.sequence_editor.active_strip = s