Fix #113463: VSE Hold-Split has no visual indication anymore #113494

Merged
Philipp Oeser merged 1 commits from lichtwerk/blender:113463 into blender-v4.0-release 2023-10-11 09:18:47 +02:00
1 changed files with 2 additions and 2 deletions

View File

@ -194,10 +194,10 @@ static StripDrawContext strip_draw_context_get(TimelineDrawContext *ctx, Sequenc
strip_ctx.content_start = SEQ_time_left_handle_frame_get(scene, seq);
strip_ctx.content_end = SEQ_time_right_handle_frame_get(scene, seq);
if (SEQ_time_has_left_still_frames(scene, seq)) {
SEQ_time_start_frame_get(seq);
strip_ctx.content_start = SEQ_time_start_frame_get(seq);
}
if (SEQ_time_has_right_still_frames(scene, seq)) {
SEQ_time_content_end_frame_get(scene, seq);
strip_ctx.content_end = SEQ_time_content_end_frame_get(scene, seq);
}
/* Limit body to strip bounds. Meta strip can end up with content outside of strip range. */
strip_ctx.content_start = min_ff(strip_ctx.content_start,