From a60ffd889fda3c135603fa28b69f0cf3e4b2c362 Mon Sep 17 00:00:00 2001 From: jif-oai Date: Wed, 21 Jan 2026 11:45:05 +0000 Subject: [PATCH] nit --- codex-rs/tui/src/app.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/codex-rs/tui/src/app.rs b/codex-rs/tui/src/app.rs index 7ca17f3cd1..09e43225ca 100644 --- a/codex-rs/tui/src/app.rs +++ b/codex-rs/tui/src/app.rs @@ -909,7 +909,9 @@ impl App { AppEvent::ExternalThreadEvent { thread_id, event } => { if matches!( event.msg, - EventMsg::ExecApprovalRequest(_) | EventMsg::ApplyPatchApprovalRequest(_) + EventMsg::ExecApprovalRequest(_) + | EventMsg::ApplyPatchApprovalRequest(_) + | EventMsg::RequestUserInput(_) ) { self.handle_external_approval_request(thread_id, event); return Ok(AppRunControl::Continue);