fix: native Library list scales instead of clipping under the sidebar - #142
Merged
Merged
Conversation
…sidebar Widening the detail inspector pushed the Library list's leading edge under the sidebar (package names clipped to "[email protected]"). Root cause: the 5-column `tableWithDescription` variant's minimum widths summed to 500pt, but the detail column's `.frame(minWidth:)` floor is 420pt. When the inspector drag squeezed content to that 420 floor, the Table couldn't compress the extra ~80pt, so it overflowed leading-edge-first behind the fixed sidebar. Lower the column minimums to sum to 388pt (120+88+72+60+48), comfortably under the 420 floor, so the Table scales down to fit rather than clipping. `ideal` widths are unchanged, so the wide-window layout is identical — the smaller mins only take effect when the pane is squeezed. Native-only; the Tauri Library row already reflows via its CSS grid + media queries. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]> Claude-Session: https://claude.ai/code/session_01X9iMFjHE21ePTjcbHpTXt6
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.
Widening the detail inspector pushed the native Library list's leading edge under the sidebar (names clipped to
[email protected]). The 5-column table's minimum widths summed to 500pt but the content column's floor is 420pt, so the table couldn't compress and overflowed leading-edge-first.Lower the column minimums to sum to 388pt (under the 420 floor) so the table scales down to fit.
idealwidths unchanged → wide-window layout identical. Native-only; the Tauri Library row already reflows via CSS grid.🤖 Generated with Claude Code
https://claude.ai/code/session_01X9iMFjHE21ePTjcbHpTXt6