fix(gui): keep Settings Language description on one line#72
Merged
AprilNEA merged 1 commit intoJun 2, 2026
Merged
Conversation
There was a problem hiding this comment.
✅ No new issues found.
Reviewed changes — PR #72 fixes per-character wrapping of the "Choose the interface language." description in Settings → Language by pinning the Select's size_full root to a fixed flex_shrink_0 box so it no longer starves the description column.
- Wrap language
Selectin fixed-size box —div().flex_shrink_0().w(px(220.)).h_6()prevents thesize_fullroot from claiming the entire row and forcing the description into per-character wrapping. - Make scroll container flex+scroll —
.flex_1().min_h(px(0.))on the innerv_flexenables proper vertical fill and scrolling. - Grow window height — 360 → 460 so the Language section isn't clipped.
Big Pickle (free) (credentials for Anthropic not configured) | 𝕏
8134311 to
dd6b132
Compare
AprilNEA
approved these changes
Jun 2, 2026
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.

Fixes #61.
In Settings → Language, the "Choose the interface language." description rendered one character per line (see the issue screenshot). The language
Select's root element issize_full, so it claimed the entire row and starved the description column to near-zero width, forcing the text to wrap per-character.Fix
Selectin a fixed-size, non-shrinking box (flex_shrink_0().w(220px).h_6()) so it no longer expands to fill the row.flex_1().min_h(0)) and grow the window height (360 → 460) so the Language section isn't clipped.Cherry-picked from #24 — the Settings/Language spacing fix only, none of the locale-expansion or asset changes.
cargo check -p openlogi-guigreen.