Refresh all cached ibmufs used by sequencer after all proxies are built.

Hopefully this will fix #30196: Proxies Not Visible in VSE Preview Window until Blender Reboot
This commit is contained in:
Sergey Sharybin
2012-02-23 08:41:13 +00:00
parent 1df41811ac
commit 5ccbe5a7d0

View File

@@ -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)