new status bar enhancements

This commit is contained in:
🪞👃🪞 2025-01-03 15:45:51 +01:00
parent a4e61c087a
commit f359768ba2
6 changed files with 36 additions and 27 deletions

View file

@ -8,9 +8,8 @@ render!(Tui: (self: MidiEditClip<'a>) => {
(ItemPalette::from(TuiTheme::g(64)), String::new(), 0, false)
};
row!(
FieldV(color, "Edit", name.to_string()),
FieldV(color, "Length", length.to_string()),
FieldV(color, "Loop", looped.to_string())
FieldV(color, "Edit", format!("{name} ({length})")),
FieldV(color, "Loop", looped.to_string())
)
});