fix(macos): wrap HUD tool strip into a grid — stops the popover overflowing#277
Merged
Conversation
…ng the popover The popover's quick-launch tool row was a single fixed HStack over Tool.navOrder. With the three new panes (dupes/orphans/photos/net → 10 tools) the row's intrinsic width (~360px) exceeded the 334px popover, so it bled past the frame and read as the whole popover being shifted left / cut off. Replaced with a 5-column flexible LazyVGrid that always fits the width and wraps to a second row — and scales to future tools without re-overflowing.
caezium
added a commit
that referenced
this pull request
Jul 13, 2026
Version bump (macOS project.yml, Windows appxmanifest + csproj) + RELEASES.md. Carries everything since v0.10.0 (a8074d2): the Leftovers/Similar Photos/Network panes (#273) plus fclones bundling (#278), HEIC surfacing (#283), the HUD popover + lazy-mount fixes (#274/#275/#277), and the Finder-launch PATH fix (#279).
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.
The real cause of the shifted/cut-off popover: the quick-launch tool row was a fixed
HStackoverTool.navOrder, and the 3 new panes pushed it to 10 tools ≈ 360px, past the 334px popover. It bled the frame and read as a left-shift.Now a 5-column flexible
LazyVGrid— always fits the width, wraps to a second row, and scales to future tools. Local Debug build green.