reload with the active sequence strip set

This commit is contained in:
Campbell Barton
2009-11-14 15:31:52 +00:00
parent c9d2186561
commit c2e092ef8b

View File

@@ -4201,11 +4201,6 @@ static void lib_link_scene(FileData *fd, Main *main)
MEM_freeN(base);
}
}
if (sce->ed) {
Editing *ed= sce->ed;
ed->act_seq= NULL; // ed->act_seq= newlibadr(fd, ed->act_seq); // FIXME
}
SEQ_BEGIN(sce->ed, seq) {
if(seq->ipo) seq->ipo= newlibadr_us(fd, sce->id.lib, seq->ipo);
@@ -4306,7 +4301,8 @@ static void direct_link_scene(FileData *fd, Scene *sce)
ListBase *old_seqbasep= &((Editing *)sce->ed)->seqbase;
ed= sce->ed= newdataadr(fd, sce->ed);
ed->act_seq= NULL; // ed->act_seq= newdataadr(fd, ed->act_seq); // FIXME
ed->act_seq= newdataadr(fd, ed->act_seq);
/* recursive link sequences, lb will be correctly initialized */
link_recurs_seq(fd, &ed->seqbase);