diff --git a/crates/tek_sequencer/src/sequencer_cmd.rs b/crates/tek_sequencer/src/sequencer_cmd.rs index 248b9ca8..1e6109dd 100644 --- a/crates/tek_sequencer/src/sequencer_cmd.rs +++ b/crates/tek_sequencer/src/sequencer_cmd.rs @@ -111,6 +111,12 @@ impl Handle for PhraseEditor { true => { self.time_axis.point_inc(); }, false => { self.time_axis.start_inc(); }, }, + key!(KeyCode::Char('>')) => { + self.time_axis.scale = prev_note_length(self.time_axis.scale) + }, + key!(KeyCode::Char('<')) => { + self.time_axis.scale = next_note_length(self.time_axis.scale) + }, key!(KeyCode::Char(',')) => match self.entered { true => { self.note_len = prev_note_length(self.note_len) }, false => { self.time_axis.scale = next_note_length(self.time_axis.scale) },