aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/handler.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/handler.rs')
-rw-r--r--src/frontend/handler.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/handler.rs b/src/frontend/handler.rs
index a9b79a0..73f30ae 100644
--- a/src/frontend/handler.rs
+++ b/src/frontend/handler.rs
@@ -25,7 +25,7 @@ pub fn handle_key_events(key_event: KeyEvent, app: &mut App) -> AppResult<()> {
// Keycodes activated for every area (high priority)
match key_event.code {
// Exit application on `ESC` or `q`
- KeyCode::Esc | KeyCode::Char('q') => {
+ KeyCode::Char('Q') | KeyCode::Char('q') => {
app.quit();
}
// Exit application on `Ctrl-C`