fix for movie files sequence strip names not working unless the first frame of the movie was shown.

This commit is contained in:
Campbell Barton 2010-01-18 11:22:32 +00:00
parent fe67b9d6f2
commit 04230ae592

@ -1066,17 +1066,19 @@ static TStripElem *give_tstripelem(Sequence *seq, int cfra)
StripElem *give_stripelem(Sequence *seq, int cfra)
{
StripElem *se;
int nr;
StripElem *se= seq->strip->stripdata;
se = seq->strip->stripdata;
nr = give_stripelem_index(seq, cfra);
if(seq->type == SEQ_MOVIE) {
/* use the first */
}
else {
int nr = give_stripelem_index(seq, cfra);
if (nr == -1) return 0;
if (se == 0) return 0;
se += nr + seq->anim_startofs;
if (nr == -1) return 0;
if (se == 0) return 0;
se += nr + seq->anim_startofs;
}
return se;
}