del removes clip from arrangement

This commit is contained in:
🪞👃🪞 2024-10-04 10:50:10 +03:00
parent 4e033da2b4
commit 4c3ad62279
2 changed files with 16 additions and 0 deletions

View file

@ -90,6 +90,11 @@ impl Handle<Tui> for Arranger<Tui> {
};
self.show_phrase();
},
// increment: remove clip
key!(KeyCode::Delete) => {
self.phrase_del();
self.show_phrase();
},
// increment: use next clip here
key!(KeyCode::Char('.')) => {
self.phrase_next();