remove Escape to quit

This commit is contained in:
krolxon 2024-04-28 23:13:17 +05:30
parent 9dceaccb3e
commit 4194bda117
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}