From 0341b5e1d8774a795fe23b4c04f9bf8eab963a76 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sat, 21 Feb 2026 23:15:33 -0800 Subject: [PATCH] Propagate chain cells through gaps inserted at cue rows --- cmd/qrunproxy/timeline.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmd/qrunproxy/timeline.go b/cmd/qrunproxy/timeline.go index c9ea433..52205a0 100644 --- a/cmd/qrunproxy/timeline.go +++ b/cmd/qrunproxy/timeline.go @@ -373,7 +373,9 @@ func (tl *Timeline) insertGap(track *TimelineTrack, beforeIndex int) { gap := &TimelineCell{Type: CellGap, row: beforeIndex, track: track} if beforeIndex > 0 { prev := track.Cells[beforeIndex-1] - if prev.BlockID != "" && prev.Event != "END" && prev.Event != "GO" { + if prev.Type == CellChain { + gap.Type = CellChain + } else if prev.BlockID != "" && prev.Event != "END" && prev.Event != "GO" { gap.Type = CellContinuation gap.BlockID = prev.BlockID }