-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Regression after v26.227.1448 (747): streaming UI updates don’t render while app is focused (updates appear only after focus change) #13106
Description
What version of the Codex App are you using (From “About Codex” dialog)?
Version 26.227.1448 (747)
What subscription do you have?
Pro
What platform is your computer?
Darwin 25.3.0 arm64 arm
What issue are you seeing?
After updating to Codex App v26.227.1448 (747), the app no longer shows streaming / incremental progress (step-by-step actions and changes) while an operation is running.
Instead, the UI stays “stale” and then shows the full result all at once only when the operation completes.
However, if I switch focus away from Codex (Cmd+Tab to another app) and then return to Codex, the streaming updates suddenly appear and continue showing incrementally. This makes it feel like the underlying stream is happening, but the UI is not repainting/updating while the app window is focused.
What steps can reproduce the bug?
- Update Codex App to v26.227.1448 (747).
- Start any action that normally streams intermediate steps (e.g., multi-step coding action that streams progress/output).
- Keep the Codex App window focused while it runs.
- Observe that no incremental updates appear; only the final combined result appears when done.
- Repeat, but during the run:
- Cmd+Tab to another app (Codex loses focus),
- Cmd+Tab back to Codex.
- Observe that streaming updates appear after returning to Codex.
What is the expected behavior?
Streaming/incremental updates should render in real time while Codex App is focused, without requiring focus changes or window activation to refresh the UI.
Additional information
This appears to be a regression introduced in v26.227.1448 (747).
The behavior looks like UI rendering/flush is tied to focus/activation (updates buffered until the app regains focus).
Workaround: switch focus away from Codex and back to force streaming updates to show.