Fix T98621: Image does not update when tweaking strip properties

Problem was caused by `startdisp` and `enddisp` still being used after changes
implemented in rB7afcfe111aac.
This commit is contained in:
Richard Antalik 2022-06-07 17:02:40 +02:00
parent e62a33e572
commit 9c029a3eb0
Notes: blender-bot 2023-05-29 09:17:12 +02:00
Referenced by issue #98621, Video Sequencer: Video does not update while being transformed until frame is changed.
1 changed files with 4 additions and 4 deletions

View File

@ -640,12 +640,12 @@ void seq_cache_cleanup_sequence(Scene *scene,
int range_end = SEQ_time_right_handle_frame_get(seq_changed);
if (!force_seq_changed_range) {
if (seq->startdisp > range_start) {
range_start = seq->startdisp;
if (SEQ_time_left_handle_frame_get(seq) > range_start) {
range_start = SEQ_time_left_handle_frame_get(seq);
}
if (seq->enddisp < range_end) {
range_end = seq->enddisp;
if (SEQ_time_right_handle_frame_get(seq) < range_end) {
range_end = SEQ_time_right_handle_frame_get(seq);
}
}