Keep rendered tables in sync during live resize - #152
Open
YishenTu wants to merge 1 commit into
Open
Conversation
Apply width-dependent table styling before each physical resize callback returns, while coalescing ordinary width writes. Track fractional geometry, trailing hosted layout propagation, document height, and wide-table overlays with real AppKit regression coverage.
YishenTu
force-pushed
the
fix/live-table-resize
branch
from
August 13, 2026 05:04
c1982a9 to
9e05936
Compare
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Root cause
NativeTextView updated its frame and text-container width synchronously, but table restyling was scheduled asynchronously. A physical AppKit window resize can remain inside its nested event-tracking operation without servicing that work between resize callbacks. The window could therefore paint each frame with the previous table image, then execute multiple redundant restyles after mouse-up.
PR #117 made initially narrow tables eligible for width-change restyling, but did not change this scheduling contract or exercise a real NativeTextView live-resize path.
Implementation
Verification
Trade-off
Physical live resize synchronously rasterizes all tables in the current document on the main thread so the frame being painted is geometrically correct. Width changes outside physical live resize remain coalesced to the latest value per run-loop turn.