fix: checks, tests

This commit is contained in:
stop screaming 2026-02-20 14:25:35 +02:00
parent cb17cdb8bc
commit 6411a82279
5 changed files with 9 additions and 11 deletions

View file

@ -370,7 +370,7 @@ impl Arrangement {
}
}
pub(crate) fn wrap (bg: Color, fg: Color, content: impl Content<TuiOut>) -> impl Content<TuiOut> {
pub fn wrap (bg: Color, fg: Color, content: impl Content<TuiOut>) -> impl Content<TuiOut> {
let left = Tui::fg_bg(bg, Reset, Fixed::X(1, Repeat::Y("")));
let right = Tui::fg_bg(bg, Reset, Fixed::X(1, Repeat::Y("")));
Bsp::e(left, Bsp::w(right, Tui::fg_bg(fg, bg, content)))