From 19bb3e0820e560fa79d672e3a1ef8ad52bce372c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Forment?= Date: Sat, 28 Feb 2026 20:43:31 +0100 Subject: [PATCH] Fix: consume event on startup screen --- src/input/mod.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/input/mod.rs b/src/input/mod.rs index d2171fa..1e71422 100644 --- a/src/input/mod.rs +++ b/src/input/mod.rs @@ -69,9 +69,7 @@ pub fn handle_key(ctx: &mut InputContext, key: KeyEvent) -> InputResult { if ctx.app.ui.show_title { ctx.dispatch(AppCommand::HideTitle); - if matches!(key.code, KeyCode::Char('q') | KeyCode::Esc) { - return InputResult::Continue; - } + return InputResult::Continue; } ctx.dispatch(AppCommand::ClearStatus);