From b1079187e4d904f0370a6596a974771de3215cf3 Mon Sep 17 00:00:00 2001 From: Jeremy Rose <172423086+nornagon-openai@users.noreply.github.com> Date: Mon, 25 Aug 2025 17:36:05 -0700 Subject: [PATCH] queued messages rendered italic (#2693) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Screenshot 2025-08-25 at 5 29 53 PM --- codex-rs/tui/src/status_indicator_widget.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/tui/src/status_indicator_widget.rs b/codex-rs/tui/src/status_indicator_widget.rs index d7fe24db..a41b7c35 100644 --- a/codex-rs/tui/src/status_indicator_widget.rs +++ b/codex-rs/tui/src/status_indicator_widget.rs @@ -123,10 +123,10 @@ impl WidgetRef for StatusIndicatorWidget { for (i, piece) in wrapped.iter().take(3).enumerate() { let prefix = if i == 0 { " ↳ " } else { " " }; let content = format!("{prefix}{piece}"); - lines.push(Line::from(content.dim())); + lines.push(Line::from(content.dim().italic())); } if wrapped.len() > 3 { - lines.push(Line::from(" …".dim())); + lines.push(Line::from(" …".dim().italic())); } } if !self.queued_messages.is_empty() {