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:
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index ef1c86b0e84..b2bf64899a4 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -180,9 +180,14 @@ static void proxy_startjob(void *pjv, short *stop, short *do_update, float *prog
}
}
-static void proxy_endjob(void *UNUSED(customdata))
+static void proxy_endjob(void *pjv)
{
+ ProxyJob *pj = pjv;
+ Editing *ed = seq_give_editing(pj->scene, FALSE);
+
+ free_imbuf_seq(pj->scene, &ed->seqbase, FALSE, FALSE);
+ WM_main_add_notifier(NC_SCENE|ND_SEQUENCER, pj->scene);
}
static void seq_proxy_build_job(const bContext *C, Sequence * seq)