Fix scroll track (#9508)

This commit is contained in:
ath3 2024-02-09 03:24:45 +01:00 committed by GitHub
parent a1272bdb17
commit f8e2d822ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -427,6 +427,7 @@ const fn div_ceil(a: usize, b: usize) -> usize {
cell.set_fg(scroll_style.fg.unwrap_or(helix_view::theme::Color::Reset));
} else if !render_borders {
// Draw scroll track
cell.set_symbol(half_block);
cell.set_fg(scroll_style.bg.unwrap_or(helix_view::theme::Color::Reset));
}
}

View File

@ -303,6 +303,7 @@ const fn div_ceil(a: usize, b: usize) -> usize {
cell.set_fg(scroll_style.fg.unwrap_or(helix_view::theme::Color::Reset));
} else if !render_borders {
// Draw scroll track
cell.set_symbol(half_block);
cell.set_fg(scroll_style.bg.unwrap_or(helix_view::theme::Color::Reset));
}
}