aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/ttyplay/input.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-05 16:05:58 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-05 16:05:58 -0500
commit97cd43606097a23b20b761928fcf65db9d42214a (patch)
treef28deef78dea72583f40eaa96256234138a6139e /src/bin/ttyplay/input.rs
parentca9a7f92628fe4b46f737c616e59c84200393f6b (diff)
downloadttyrec-bin-97cd43606097a23b20b761928fcf65db9d42214a.tar.gz
ttyrec-bin-97cd43606097a23b20b761928fcf65db9d42214a.zip
add a command to reset speed to default
Diffstat (limited to 'src/bin/ttyplay/input.rs')
-rw-r--r--src/bin/ttyplay/input.rs19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/bin/ttyplay/input.rs b/src/bin/ttyplay/input.rs
index 8c45b69..266c419 100644
--- a/src/bin/ttyplay/input.rs
+++ b/src/bin/ttyplay/input.rs
@@ -30,16 +30,15 @@ pub fn spawn_task(
crate::event::TimerAction::Pause,
),
textmode::Key::Ctrl(b'i') => crate::event::Event::ToggleUi,
- textmode::Key::Char('=' | '+') => {
- crate::event::Event::TimerAction(
- crate::event::TimerAction::SpeedUp,
- )
- }
- textmode::Key::Char('_' | '-') => {
- crate::event::Event::TimerAction(
- crate::event::TimerAction::SlowDown,
- )
- }
+ textmode::Key::Char('+') => crate::event::Event::TimerAction(
+ crate::event::TimerAction::SpeedUp,
+ ),
+ textmode::Key::Char('-') => crate::event::Event::TimerAction(
+ crate::event::TimerAction::SlowDown,
+ ),
+ textmode::Key::Char('=') => crate::event::Event::TimerAction(
+ crate::event::TimerAction::DefaultSpeed,
+ ),
_ => continue,
};
event_w.send(event).await.unwrap();