mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
reenable sequencer zoom/change len
This commit is contained in:
parent
b52aa3fc80
commit
d0d600f77b
1 changed files with 4 additions and 4 deletions
|
|
@ -107,12 +107,12 @@ impl Handle<Tui> for PhraseEditor<Tui> {
|
|||
false => { self.time_axis.start_inc(); },
|
||||
},
|
||||
key!(KeyCode::Char(',')) => match self.entered {
|
||||
true => {},
|
||||
false => {},
|
||||
true => { self.note_len = prev_note_length(self.note_len) },
|
||||
false => { self.time_axis.scale = prev_note_length(self.time_axis.scale) },
|
||||
},
|
||||
key!(KeyCode::Char('.')) => match self.entered {
|
||||
true => {},
|
||||
false => {},
|
||||
true => { self.note_len = next_note_length(self.note_len) },
|
||||
false => { self.time_axis.scale = next_note_length(self.time_axis.scale) },
|
||||
},
|
||||
key!(KeyCode::Char('a')) => if self.entered {
|
||||
self.put();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue