From 5494e6cf7bf41ebf729331e7c970d78d74fbe1db Mon Sep 17 00:00:00 2001 From: canvrno-oai Date: Wed, 15 Apr 2026 20:51:10 -0700 Subject: [PATCH] Add two additon pop all calls to /review feature --- codex-rs/tui/src/chatwidget.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/codex-rs/tui/src/chatwidget.rs b/codex-rs/tui/src/chatwidget.rs index aef7c7cf3a..5c76fc9d65 100644 --- a/codex-rs/tui/src/chatwidget.rs +++ b/codex-rs/tui/src/chatwidget.rs @@ -10572,6 +10572,7 @@ impl ChatWidget { }, user_facing_hint: None, }); + tx3.send(AppEvent::DismissAllBottomPaneViews); })], dismiss_on_select: true, search_value: Some(search_val), @@ -10606,6 +10607,7 @@ impl ChatWidget { }, user_facing_hint: None, }); + tx.send(AppEvent::DismissAllBottomPaneViews); }), ); self.bottom_pane.show_view(Box::new(view));