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-12-15 13:35:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-15 13:35:50 +0300
commitdf8c1f5b912137c70276359df28dc97cc70eadca (patch)
tree2bc9f264ca461eb6dcfdf167f003c049f9e80b61 /source/blender/editors/space_sequencer/sequencer_edit.c
parent2f80f813f37b340aceb4a457aee032a30d4cc6a9 (diff)
animation system wasnt being updated when rendering with the sequencer
Diffstat (limited to 'source/blender/editors/space_sequencer/sequencer_edit.c')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index e231c03a335..361d92c1930 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -2667,7 +2667,7 @@ static int sequencer_swap_exec(bContext *C, wmOperator *op)
void SEQUENCER_OT_swap(wmOperatorType *ot)
{
/* identifiers */
- ot->name= "Swap Strip Left";
+ ot->name= "Swap Strip";
ot->idname= "SEQUENCER_OT_swap";
ot->description="Swap active strip with strip to the left.";
@@ -2688,9 +2688,9 @@ static int sequencer_rendersize_exec(bContext *C, wmOperator *op)
Scene *scene= CTX_data_scene(C);
Sequence *active_seq = active_seq_get(scene);
- if(active_seq==NULL) return OPERATOR_CANCELLED;
+ if(active_seq==NULL)
+ return OPERATOR_CANCELLED;
- printf("got active sequence\n");
switch (active_seq->type) {
case SEQ_IMAGE:
case SEQ_MOVIE: