Sweep 19 Sep 2026 · 02:36Z Build v2.1.278 500 read Stable v2.1.267 Latest v2.1.278 Next v2.1.278 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.274 ·

Absolute-positioned element overdraw tracking in terminal renderer

Terminal renderer now tracks and repaints stale absolutely-positioned elements that overlap new content

TierUnder the hoodhow much it should matter to you
Useful1my rating, 1 to 5
Signal0worth watching, 1 to 5
AreaTerminal UIwhat it touches
KindInternal Changesin v2.1.274,
Under the hood

Terminal renderer now tracks and repaints stale absolutely-positioned elements that overlap new content

What

Claude Code's terminal rendering engine gained new internal logic to track absolutely-positioned elements (parts of the interface pinned to a specific spot rather than flowing with the rest of the layout). New helper functions check whether such an element's rectangle stays within its parent's bounds, and detect when a leftover rectangle from a previous frame overlaps a newly drawn element. A new repaintAfterStaleAbsolutePaint method uses this to trigger a repaint when that happens.

Why

This is a rendering correctness fix: it should prevent stale visual artifacts from absolutely-positioned elements lingering on screen and overlapping new content after the layout changes.

See this entry in the whole of v2.1.274 →