diff options
| author | krolxon <krolyxon@tutanota.com> | 2024-04-28 23:13:17 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2024-04-28 23:13:17 +0530 |
| commit | 4194bda11767be7bfd001e39041d6cf37fb1f90f (patch) | |
| tree | fb9c1104e4485e0f1e36be9dd6898036cf94e2c4 | |
| parent | 9dceaccb3eb4d28b81bc668fa4bf8e417171098f (diff) | |
remove Escape to quit
| -rwxr-xr-x | src/handler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
