aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/ttyplay/input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/ttyplay/input.rs')
-rw-r--r--src/bin/ttyplay/input.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/ttyplay/input.rs b/src/bin/ttyplay/input.rs
index dbdedd6..d7cdc57 100644
--- a/src/bin/ttyplay/input.rs
+++ b/src/bin/ttyplay/input.rs
@@ -11,6 +11,7 @@ pub async fn handle_input(
textmode::Key::Char('h' | 'p') => crate::event::Event::PreviousFrame,
textmode::Key::Char('q') => crate::event::Event::Quit,
textmode::Key::Char(' ') => crate::event::Event::Pause,
+ textmode::Key::Ctrl(b'i') => crate::event::Event::ToggleUi,
_ => return Ok(()),
};