fix missing scene row (how?!)

This commit is contained in:
🪞👃🪞 2024-10-22 20:23:14 +03:00
parent ec81cbf2f1
commit ee94df78f6
2 changed files with 6 additions and 8 deletions

View file

@ -40,6 +40,7 @@ impl Content for ArrangerStatusBar {
.bold(true);
let commands = match self {
Self::ArrangementMix => command(&[
["", "c", "olor"],
["", ",.", "scale rows"],
["", "<>", "resize view"],
]),
@ -271,7 +272,7 @@ impl<'a> Content for VerticalArranger<'a, Tui> {
}))?;
Ok(())
}).bg(bg).border(border)
}).bg(bg).grow_y(1).border(border)
}
}
impl<'a> Content for HorizontalArranger<'a, Tui> {