fix goose2 window minimum sizing - #8946
Merged
Merged
Conversation
Signed-off-by: Wes <wesb@block.xyz>
Collaborator
Author
shafqatevo
pushed a commit
to shafqatevo/goose
that referenced
this pull request
Aug 7, 2026
Signed-off-by: Wes <wesb@block.xyz>
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.





Category: fix
User Impact: Users can no longer resize the Goose2 desktop app into a state where the settings UI overlaps native window controls or clips essential content.
Problem: Goose2 allowed the desktop window to shrink below the space the app chrome and settings modal need, which made the settings screen overlap macOS traffic lights and crop content. The settings dialog also had a fixed 600px height, so small viewports could still produce broken layouts.
Solution: The Tauri window now enforces an 800x600 minimum, matching the app's launch size. The settings modal now fits within the viewport with margin and gives the settings navigation its own scroll area when space is constrained.
File changes
ui/goose2/src-tauri/tauri.conf.json
Adds minimum window dimensions so the desktop app cannot be resized below the size the shell is designed around.
ui/goose2/src/features/settings/ui/SettingsModal.tsx
Makes the settings modal responsive to viewport height and width, and makes the settings navigation scroll independently to avoid overflow at constrained sizes.
Reproduction Steps
Screenshots/Demos
Manual visual validation was performed locally; the reporter confirmed the updated behavior works well.
Verification
jq empty src-tauri/tauri.conf.jsonpnpm exec biome check src/features/settings/ui/SettingsModal.tsxpnpm buildsq agents review --intent "Constrain Goose2 desktop window minimum size and make the settings modal fit within smaller viewports"pnpm exec biome format .,cargo fmt --check,cargo clippy -- -D warnings,pnpm test,pnpm check,pnpm build,cargo check