From f9143d03614969219e1bb3c77523ff3912047697 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Fri, 16 May 2025 19:27:49 -0700 Subject: [PATCH] fix: do not let Tab keypress flow through to composer when used to toggle focus (#977) One line fix from Codex! --- codex-rs/tui/src/chatwidget.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/codex-rs/tui/src/chatwidget.rs b/codex-rs/tui/src/chatwidget.rs index 24d37c4c..17f57fc0 100644 --- a/codex-rs/tui/src/chatwidget.rs +++ b/codex-rs/tui/src/chatwidget.rs @@ -129,6 +129,7 @@ impl ChatWidget<'_> { self.bottom_pane .set_input_focus(self.input_focus == InputFocus::BottomPane); self.request_redraw(); + return; } match self.input_focus {