From a13f63f34272889239d1e0fcd37f9c4fb5ec983a Mon Sep 17 00:00:00 2001 From: lukeflo Date: Fri, 27 Sep 2024 23:48:46 +0200 Subject: implement scroll action for info box --- src/frontend/handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/frontend/handler.rs') diff --git a/src/frontend/handler.rs b/src/frontend/handler.rs index a9b79a0..73f30ae 100644 --- a/src/frontend/handler.rs +++ b/src/frontend/handler.rs @@ -25,7 +25,7 @@ pub fn handle_key_events(key_event: KeyEvent, app: &mut App) -> AppResult<()> { // Keycodes activated for every area (high priority) match key_event.code { // Exit application on `ESC` or `q` - KeyCode::Esc | KeyCode::Char('q') => { + KeyCode::Char('Q') | KeyCode::Char('q') => { app.quit(); } // Exit application on `Ctrl-C` -- cgit v1.2.3