Remeasure dynamic cells in the transcript overlay - #34232
Merged
copyberry[bot] merged 1 commit intoJul 19, 2026
Merged
Conversation
## Why The transcript overlay cached every committed cell's height. Cells whose content changes after insertion, such as refreshed status output or newly available visualizations, could outgrow that cached height and be clipped. ## What changed - Let history cells declare whether their transcript height is stable, and remeasure dynamic cells on later overlay renders. - Preserve cached heights for stable cells when appending a committed cell instead of rebuilding all renderables. ## Testing - Cover status output growing after a rate-limit refresh. - Cover a visualization link replacing its unavailable placeholder. - Verify that appending a cell preserves cached measurements for stable cells. GitOrigin-RevId: 03e7166cb94d7353c9b89bff8abb3b7ccb84a6bb
copyberry
Bot
force-pushed
the
copyberry/codex-internal-to-codex-oss/03e7166cb94d7353c9b89bff8abb3b7ccb84a6bb
branch
from
July 19, 2026 21:35
237bee2 to
a97ae65
Compare
copyberry
Bot
deleted the
copyberry/codex-internal-to-codex-oss/03e7166cb94d7353c9b89bff8abb3b7ccb84a6bb
branch
July 19, 2026 21:36
toddnotplaying
temporarily deployed
to
issue-triage
July 19, 2026 21:37 — with
GitHub Actions
Inactive
toddnotplaying
temporarily deployed
to
issue-triage
July 19, 2026 21:37 — with
GitHub Actions
Inactive
toddnotplaying
temporarily deployed
to
issue-triage
July 19, 2026 21:37 — with
GitHub Actions
Inactive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Remeasure dynamic cells in the transcript overlay
Why
The transcript overlay cached every committed cell's height. Cells whose content changes after insertion, such as refreshed status output or newly available visualizations, could outgrow that cached height and be clipped.
What changed
Testing