fix: /status when sub-agent (#13130)

Fix https://github.com/openai/codex/issues/13066
This commit is contained in:
jif-oai 2026-03-02 12:57:15 +01:00 committed by GitHub
parent 9685e7d6d1
commit b08bdd91e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1147,6 +1147,10 @@ impl ChatWidget {
Some(event.reasoning_effort),
None,
);
if let Some(mask) = self.active_collaboration_mask.as_mut() {
mask.model = Some(model_for_header.clone());
mask.reasoning_effort = Some(event.reasoning_effort);
}
self.refresh_model_display();
self.sync_personality_command_enabled();
let startup_tooltip_override = self.startup_tooltip_override.take();