diff --git a/crates/tek/src/tui/arranger_mode_v.rs b/crates/tek/src/tui/arranger_mode_v.rs index de2b34a9..02a2a91a 100644 --- a/crates/tek/src/tui/arranger_mode_v.rs +++ b/crates/tek/src/tui/arranger_mode_v.rs @@ -178,8 +178,8 @@ render!(|self: ArrangerVCursor|render(move|to: &mut TuiOutput|{ to.fill_fg([x + width, y, 1, height], bg); } if let Some([_, y, _, height]) = scene_area { - to.fill_ul([area.x(), y - 1, area.w() + self.scenes_w, 1], bg); - to.fill_ul([area.x(), y + height - 1, area.w() + self.scenes_w, 1], bg); + to.fill_ul([area.x(), y - 1, area.w(), 1], bg); + to.fill_ul([area.x(), y + height - 1, area.w(), 1], bg); } Ok(if focused { to.render_in(if let Some(clip_area) = clip_area { clip_area }