Skip to content

Commit

Permalink
fix: cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeromos Kovács committed Oct 21, 2024
1 parent 5af0713 commit 5513f4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ impl App {
KeyCode::Char('k') | KeyCode::Up => self.faster(false),
KeyCode::Char(' ') | KeyCode::Enter => self.play_pause(&mut prev_poll_t),
KeyCode::Char('r') => self.restart(),
KeyCode::Char('n') | KeyCode::Char('l') | KeyCode::Right => self.next(),
KeyCode::Char('p') | KeyCode::Char('h') | KeyCode::Left => self.prev(),
KeyCode::Char('n' | 'l') | KeyCode::Right => self.next(),
KeyCode::Char('p' | 'h') | KeyCode::Left => self.prev(),
KeyCode::Char('R') | KeyCode::Backspace => *self = Self::default(),
_ => {}
}
Expand Down

0 comments on commit 5513f4f

Please sign in to comment.