fix(gui): keep the macOS status bar clear of the rounded window corners - #504
Merged
got3nks merged 1 commit intoJul 16, 2026
Merged
Conversation
On macOS the frame's bottom corners are rounded, which clipped the status
row's content where it sat flush against the window edge -- most visibly the
trailing connection label ("Kad: ...") at the bottom-right, and the info
icon at the bottom-left.
Inset the status row on macOS only: prepend a left spacer and add right and
bottom margins so the leading icon and trailing text clear the corner curve.
Other platforms are unchanged.
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.
On macOS the main window's bottom corners are rounded, which clipped the bottom status bar where its content sat flush against the window edge — most visibly the trailing connection label ("Kad: …") at the bottom-right, and the info icon at the bottom-left.
The status row is now inset on macOS only (
#if defined(__WXMAC__)): a left spacer plus right/bottom margins so the leading icon and trailing text clear the corner curve. Other platforms keep the current 5px-left layout, so there is no wasted space on Linux or Windows.The change is a layout-only tweak in
muuli_wdr.cpp; it applies to both the monolithicaMuleand the remoteamuleGUI, which share the status bar. No new strings and no behavior change off macOS.