mirror of
https://codeberg.org/unspeaker/perch.git
synced 2025-12-06 17:46:42 +01:00
add column title to value bar
This commit is contained in:
parent
41b6a0cd57
commit
57b418b567
2 changed files with 14 additions and 9 deletions
|
|
@ -23,7 +23,12 @@ impl Content<TuiOut> for Taggart {
|
|||
let value_bar = status_bar(
|
||||
Color::Rgb(192, 192, 192),
|
||||
Color::Rgb(0, 0, 0),
|
||||
Fill::x(Align::w(format!(" {}/{} ", self.cursor + 1, self.entries.len())))
|
||||
Fill::x(Align::w(format!(
|
||||
" {}/{} {}:",
|
||||
self.cursor + 1,
|
||||
self.entries.len(),
|
||||
self.columns.0[self.column].title
|
||||
)))
|
||||
);
|
||||
let mode_bar = status_bar(
|
||||
Color::Rgb(0, 0, 0),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue