Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into jif/ui-animation
  • Loading branch information
tibo-openai authored Sep 14, 2025
commit d27d48350f47322b531607104a4f56864894cf78
7 changes: 4 additions & 3 deletions codex-rs/tui/src/new_model_popup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ impl WidgetRef for &ModelUpgradePopup {
fn render_ref(&self, area: Rect, buf: &mut Buffer) {
Clear.render(area, buf);

// Start with the current animation frame.
let mut lines: Vec<Line> = self.frames()[self.frame_idx]
.lines()
.map(|l| l.to_string().into())
Expand All @@ -190,8 +189,10 @@ impl WidgetRef for &ModelUpgradePopup {
lines.push("".into());

lines.push(
format!(" Codex is now powered by {SWIFTFOX_MEDIUM_MODEL}, a new model that is")
.into(),
format!(
" Codex is now powered by {SWIFTFOX_MODEL_DISPLAY_NAME}, a new model that is"
)
.into(),
);
lines.push(Line::from(vec![
" ".into(),
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.