Remove the "About Avalonia" entry from the macOS app menu - #5376
Merged
Gabriel Dufresne (GabrielDuf) merged 1 commit intoSep 14, 2026
Merged
Conversation
Copilot started reviewing on behalf of
Gabriel Dufresne (GabrielDuf)
September 14, 2026 14:51
View session
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The change correctly uses Avalonia’s native-menu behavior and introduces no identified issues.
Pull request overview
Adds an empty application-level native menu to suppress Avalonia’s default macOS About entry while retaining standard system items.
Changes:
- Declares an empty
NativeMenu. - Documents the macOS behavior.
File summaries
| File | Description |
|---|---|
src/UniGetUI.Avalonia/App.axaml |
Customizes the native macOS application menu. |
Review details
- Files reviewed: 1/1 changed files
- Comments generated: 0
- Review effort level: Balanced
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
There was a problem hiding this comment.
🤖 Pull request was approved automatically: the AI review is complete and all its review threads are resolved. 🎉
Integration Details
{
"deliveryId": "efff5580-b04b-11f1-8d85-d02db59699b3",
"headSha": "469cd4dfe422307ab3dda4f18117ad070437b830",
"reviewer": "copilot-pull-request-reviewer[bot]"
}
Gabriel Dufresne (GabrielDuf)
deleted the
fix/remove-about-avalonia-menu
branch
September 14, 2026 15:10
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.
This pull request makes a small but important change to the
src/UniGetUI.Avalonia/App.axamlfile to improve the application's native menu behavior on macOS. By declaring an emptyNativeMenu, the default "About Avalonia" entry is suppressed, resulting in a more polished and platform-appropriate user experience.macOS Menu Customization:
NativeMenuinApp.axamlto suppress the default "About Avalonia" menu entry on macOS. The standard system menu items (Services, Hide, Quit) are still present.