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>2009-11-14 17:58:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-14 17:58:19 +0300
commitc9d2186561a86b050c94c52925c2f7353448961b (patch)
treec369135530c4070e95c79eb7807d730b5fe71211 /source/blender/render
parentd33291fcc45f17b0bfa6c6021edc47f41f45e76f (diff)
- sequencer speed effect back using fcurves, still needs manual reloading to refresh.
- added a function id_data_find_fcurve() to get the fcurve without RNA vars. Aligorith: this could be made to use a path rather then a property name.
Diffstat (limited to 'source/blender/render')
-rw-r--r--source/blender/render/intern/source/pipeline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/render/intern/source/pipeline.c b/source/blender/render/intern/source/pipeline.c
index 9c4c83a82f9..b357a17e244 100644
--- a/source/blender/render/intern/source/pipeline.c
+++ b/source/blender/render/intern/source/pipeline.c
@@ -2463,7 +2463,7 @@ static void do_render_seq(Render * re)
if (recurs_depth == 0) { /* with nested scenes, only free on toplevel... */
Editing * ed = re->scene->ed;
if (ed) {
- free_imbuf_seq(&ed->seqbase, TRUE);
+ free_imbuf_seq(re->scene, &ed->seqbase, TRUE);
}
}
}