Fix T66805: No cache invalidation with remove gaps operator

Reviewed By: brecht

Differential Revision: https://developer.blender.org/D8379
This commit is contained in:
Richard Antalik 2020-08-02 20:53:55 +02:00
parent cc0d8ab036
commit 189eb2550d
Notes: blender-bot 2023-02-14 04:56:36 +01:00
Referenced by issue #66805, VSE, 2.8: Missing update of keys on TimeLine of animated strips
1 changed files with 1 additions and 0 deletions

View File

@ -1068,6 +1068,7 @@ static bool sequence_offset_after_frame(Scene *scene, const int delta, const int
if (seq->startdisp >= cfra) {
BKE_sequence_translate(scene, seq, delta);
BKE_sequence_calc(scene, seq);
BKE_sequence_invalidate_cache_preprocessed(scene, seq);
done = true;
}
}