wip: sequencer edit mode

This commit is contained in:
🪞👃🪞 2024-10-17 22:20:36 +03:00
parent eac8986548
commit 0af5f97244
5 changed files with 72 additions and 147 deletions

View file

@ -34,7 +34,7 @@ impl Handle<Tui> for Arranger<Tui> {
key!(KeyCode::Right) => { self.focus_right(); },
key!(KeyCode::Char('e')) => {
self.editor.phrase = self.arrangement.phrase().clone();
self.focus_cursor = (1, 2);
self.focus(ArrangerFocus::PhraseEditor);
}
// Global play/pause binding
key!(KeyCode::Char(' ')) => match self.transport {