From 4f21df2bfef905f9923217d6a1f8461aaf923f34 Mon Sep 17 00:00:00 2001 From: pash Date: Wed, 4 Mar 2026 15:52:06 -0800 Subject: [PATCH] adjust fast header spacing --- codex-rs/tui/src/history_cell.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codex-rs/tui/src/history_cell.rs b/codex-rs/tui/src/history_cell.rs index 0e8f5fbb72..73bea538e0 100644 --- a/codex-rs/tui/src/history_cell.rs +++ b/codex-rs/tui/src/history_cell.rs @@ -1255,8 +1255,8 @@ impl HistoryCell for SessionHeaderHistoryCell { spans.push(Span::from(reasoning)); } if self.show_fast_status { - spans.push(" ".into()); - spans.push(Span::styled("fast", self.model_style.magenta().bold())); + spans.push(" ".into()); + spans.push(Span::styled("fast", self.model_style.magenta())); } spans.push(" ".dim()); spans.push(CHANGE_MODEL_HINT_COMMAND.cyan()); @@ -3300,7 +3300,7 @@ mod tests { .find(|line| line.contains("model:")) .expect("model line"); - assert!(model_line.contains("gpt-4o high fast")); + assert!(model_line.contains("gpt-4o high fast")); assert!(model_line.contains("/model to change")); }