-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File Actions menu #31220
base: main
Are you sure you want to change the base?
File Actions menu #31220
Conversation
@niels9001 Do you have an idea why the contextmenu doesn't take the WPFUI style? |
… to replace filename with hash
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
check-spelling found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
…/microsoft/PowerToys into dev/aaron-junker/FileActionsMenu
…/microsoft/PowerToys into dev/aaron-junker/FileActionsMenu
…/microsoft/PowerToys into dev/aaron-junker/FileActionsMenu
@stefansjfw All your comments are now adressed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for addressing comments Aaron. Few more comments to resolve and then I'll trigger release CI to give it a final test. Great work so far!
@@ -25,7 +25,9 @@ public static Frame Frame | |||
{ | |||
if (frame == null) | |||
{ | |||
#pragma warning disable WinUIEx1001 // The member will always be null. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we are referencing something that will (according to WinUIEx) always be null. If the version bump of WinUIEx introduced this, this can't go in like this. We should make sure that this is safe to do. Hence, my question above...
src/modules/FileActionsMenu/FileActionsMenu/FileActionsMenu.base.rc
Outdated
Show resolved
Hide resolved
@stefansjfw I adressed your remaining comments. Thank you for the review. |
@stefansjfw Thank you so much for fixing the issues. Is there anything left I have to do? |
@Aaron-Junker |
Give it some more testing I guess :) will do the same tomorrow. I also asked @niels9001 to revisit icon and screenshots |
…/microsoft/PowerToys into dev/aaron-junker/FileActionsMenu
<tkcontrols:SettingsCard | ||
x:Uid="Activation_Shortcut" | ||
HeaderIcon="{ui:FontIcon Glyph=}" | ||
IsEnabled="{x:Bind ViewModel.FileActionsMenuIsEnabled, Mode=OneWay}"> | ||
<controls:ShortcutControl MinWidth="{StaticResource SettingActionControlMinWidth}" HotkeySettings="{x:Bind Path=ViewModel.FileActionsMenuShortcut, Mode=TwoWay}" /> | ||
</tkcontrols:SettingsCard> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be aligned with other pages, shouldn't this be a settings group?
Summary of the Pull Request
Adding a new menu invokable by selecting files in explorer and pressing a shortcut set in the settings.
Screenshots
PR Checklist
Detailed Description of the Pull Request / Additional comments
Things left to do:
Validation Steps Performed