From 4194bda11767be7bfd001e39041d6cf37fb1f90f Mon Sep 17 00:00:00 2001 From: krolxon Date: Sun, 28 Apr 2024 23:13:17 +0530 Subject: [PATCH] remove Escape to quit --- src/handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handler.rs b/src/handler.rs index e2b25a1..5ba1356 100755 --- a/src/handler.rs +++ b/src/handler.rs @@ -109,7 +109,7 @@ pub fn handle_key_events(key_event: KeyEvent, app: &mut App) -> AppResult<()> { } } else if app.playlist_popup { match key_event.code { - KeyCode::Char('q') | KeyCode::Esc => { + KeyCode::Char('q') => { app.playlist_popup = false; }