wip: big flat

This commit is contained in:
🪞👃🪞 2024-12-30 15:56:56 +01:00
parent 8cbe621b07
commit 4a3de618d0
20 changed files with 305 additions and 336 deletions

View file

@ -12,7 +12,7 @@ pub struct SequencerTui {
pub clock: ClockModel,
pub phrases: PoolModel,
pub player: MidiPlayer,
pub editor: MidiEditorModel,
pub editor: MidiEditor,
pub size: Measure<Tui>,
pub status: bool,
pub note_buf: Vec<u8>,
@ -30,7 +30,7 @@ from_jack!(|jack|SequencerTui {
transport: true,
selectors: true,
phrases: PoolModel::from(&phrase),
editor: MidiEditorModel::from(&phrase),
editor: MidiEditor::from(&phrase),
player: MidiPlayer::from((&clock, &phrase)),
size: Measure::new(),
midi_buf: vec![vec![];65536],