-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Add an openSystemMenu keybinding #11086
Conversation
host.OnDirectKeyEvent(VK_SPACE, LOBYTE(HIWORD(message.lParam)), true); | ||
continue; |
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.
huh, why don't we need the if()
here anymore?
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 want to always consume the alt+space
since this is now a default keybinding (so if the host did not deal with it, it means it was explcitly unbound and we still don't want system XAML to get it)
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.
Just update the schema and the docs and we're good.
Also, just wanna double check, if you unbind alt+space, it gets sent straight to the terminal right? The system menu doesn't pop up?
thanks for the reminder, done!
Yep! The menu doesn't pop up and the terminal gets the alt+space (so the end result is it looks like you just typed space) |
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!
Hello @carlos-zamora! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
🎉 Handy links: |
Summary of the Pull Request
Basically undoes #10988 in favour of implementing it as described in #11018
PR Checklist
Validation Steps Performed