aboutsummaryrefslogtreecommitdiff
path: root/src/handler.rs
diff options
context:
space:
mode:
authorkrolxon <krolyxon@tutanota.com>2024-04-28 23:13:17 +0530
committerkrolxon <krolyxon@tutanota.com>2024-04-28 23:13:17 +0530
commit4194bda11767be7bfd001e39041d6cf37fb1f90f (patch)
treefb9c1104e4485e0f1e36be9dd6898036cf94e2c4 /src/handler.rs
parent9dceaccb3eb4d28b81bc668fa4bf8e417171098f (diff)
remove Escape to quit
Diffstat (limited to 'src/handler.rs')
-rwxr-xr-xsrc/handler.rs2
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;
}