Move package-list action bar items to overflow flyout - #5363
Merged
Conversation
Copilot started reviewing on behalf of
Gabriel Dufresne (GabrielDuf)
September 9, 2026 13:33
View session
Contributor
There was a problem hiding this comment.
🟡 Changes recommended
The refactor unintentionally removes bulk and management actions for automatic updates.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
Introduces a responsive package-page toolbar that collapses labels and moves excess actions into an overflow flyout.
Changes:
- Adds
ToolbarOverflowPaneland overflow-menu population. - Replaces untyped toolbar items with
ToolbarEntry. - Removes two automatic-update toolbar actions.
File summaries
| File | Description |
|---|---|
SoftwareUpdatesPage.cs |
Updates action definitions and removes automatic-update actions. |
AbstractPackagesPage.axaml.cs |
Initializes and populates the overflow flyout. |
AbstractPackagesPage.axaml |
Replaces the toolbar with the overflow panel. |
ToolbarOverflowPanel.cs |
Implements responsive measurement and overflow behavior. |
PackagesPageViewModel.cs |
Introduces typed toolbar entries. |
Review details
- Files reviewed: 5/5 changed files
- Comments generated: 1
- 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": "cb8ec330-ac53-11f1-93e0-292297242400",
"headSha": "0e67540b0e08a1bbd3cb397c100fd14e5af2a370",
"reviewer": "copilot-pull-request-reviewer[bot]"
}
Gabriel Dufresne (GabrielDuf)
deleted the
fix/actionbar-overflow-menu
branch
September 9, 2026 13:50
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 introduces a responsive, overflow-aware toolbar for the packages page, replacing the previous static horizontal toolbar. The new implementation ensures toolbar buttons remain accessible on narrow windows by collapsing labels and moving excess buttons into an overflow menu. Major changes involve both the ViewModel and View, including a new
ToolbarOverflowPanelcontrol, a newToolbarEntryabstraction, and logic to manage overflowed items.Toolbar Responsiveness and Overflow Handling:
ToolbarOverflowPanelcontrol (ToolbarOverflowPanel.cs) that dynamically arranges toolbar items, collapses labels when space is limited, and moves items into an overflow menu as needed.AbstractPackagesPage.axamland.axaml.cs) to useToolbarOverflowPanel, added an overflow button, and implemented logic to populate the overflow menu with hidden toolbar items.ViewModel Adjustments:
ToolbarEntryrecord to represent toolbar items, replacing the previous use ofToolBarItemswith a strongly-typedToolbarEntrieslist.ToolbarEntryand the new list.Code Cleanup and Refactoring:
SoftwareUpdatesPage.csfor consistency with the new system.