Mark truncated text with an ellipsis app-wide - #5341
Merged
Gabriel Dufresne (GabrielDuf) merged 1 commit intoSep 1, 2026
Conversation
Copilot started reviewing on behalf of
Gabriel Dufresne (GabrielDuf)
September 1, 2026 12:59
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Refines Avalonia layouts so constrained text can consistently display ellipses.
Changes:
- Replaces horizontal stacks with constrained icon/text grids.
- Applies global character-ellipsis trimming to
TextBlock.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
AbstractPackagesPage.axaml |
Constrains package and source labels. |
SidebarView.axaml |
Constrains navigation labels. |
SettingsBasePage.axaml |
Improves restart-banner layout. |
OperationHistoryPage.axaml |
Constrains operation labels. |
ManageShortcutsWindow.axaml |
Constrains shortcut fields. |
ManageAutoUpdatesWindow.axaml |
Improves warning layout. |
Styles.Common.axaml |
Enables global ellipsis trimming. |
💡 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": "842f84b0-a605-11f1-9130-4694db736c89",
"headSha": "cdd8849ac9d77da1376cc8577889a35522d981f8",
"reviewer": "copilot-pull-request-reviewer[bot]"
}
Gabriel Dufresne (GabrielDuf)
deleted the
fix/5336-truncated-text-ellipsis
branch
September 1, 2026 13:20
4 tasks
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 refactors several UI components to improve layout consistency and text handling across the application. The main changes involve replacing
StackPanellayouts withGridlayouts for better alignment of icons and text, and setting a global text trimming style to ensure long text is properly ellipsized. These updates enhance the visual appearance and usability, especially when dealing with variable-length text.UI Layout Refactoring:
StackPanelwithGridlayouts in files such asManageShortcutsWindow.axaml,ManageAutoUpdatesWindow.axaml,OperationHistoryPage.axaml,SettingsBasePage.axaml, andSidebarView.axaml. This change ensures better alignment and spacing between icons and text, especially for items with variable-length content.Text Handling Improvements:
TextBlockinStyles.Common.axamlto setTextTrimmingtoCharacterEllipsis, ensuring that overflowing text is consistently truncated with an ellipsis throughout the application.These changes collectively improve the app's look and feel, making UI elements more robust and visually consistent.