From fb06907cfe9b7bce899697c6495941331fa829b2 Mon Sep 17 00:00:00 2001 From: krolxon Date: Sun, 28 Apr 2024 23:18:48 +0530 Subject: [PATCH] epitome of stupidity --- src/handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handler.rs b/src/handler.rs index 6b44414..23c3cbe 100755 --- a/src/handler.rs +++ b/src/handler.rs @@ -156,7 +156,7 @@ pub fn handle_key_events(key_event: KeyEvent, app: &mut App) -> AppResult<()> { } else { match key_event.code { // Quit - KeyCode::Char('q'), + KeyCode::Char('q') => app.quit(), KeyCode::Char('c') | KeyCode::Char('C') => { if key_event.modifiers == KeyModifiers::CONTROL { app.quit();