rename some view structs

This commit is contained in:
🪞👃🪞 2024-11-25 19:37:40 +01:00
parent b2386b2992
commit 83e2a285dd
4 changed files with 17 additions and 19 deletions

View file

@ -3,14 +3,12 @@ use crate::*;
impl Content for SequencerTui {
type Engine = Tui;
fn content (&self) -> impl Widget<Engine = Tui> {
SequencerStatusBar::with(self, lay!(
col!(
TransportView::from(self),
Split::right(20,
widget(&PhrasesView(self)),
widget(&PhraseView2::from(self)),
).min_y(20)
),
SequencerStatusBar::with(self, col!(
TransportView::from(self),
Split::right(20,
PhraseListView(self),
PhraseView::from(self),
).min_y(20)
))
}
}