Skip to content

Commit e2caade

Browse files
committed
Don't draw CC end brackets for unfinished CCs
1 parent d56483f commit e2caade

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/render.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ module Make (C : CANVAS) = struct
186186
let y = y_of_row v cc.y in
187187
let w =
188188
match cc.end_time with
189-
| None -> v.width -. x
189+
| None -> v.width -. x +. 100.
190190
| Some stop -> View.x_of_time v stop -. x
191191
in
192192
let h = float cc.height *. Style.line_spacing -. 4. in

0 commit comments

Comments
 (0)