-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Add Enter and Tab back in to ios and macos key maps #81865
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
Conversation
aadc3b3 to
e589242
Compare
|
@dkwingsmt I noticed when I re-ran the script that I get some differences in the generated engine code too, including some that are somewhat unexpected: I assume I should be updating those too, right? |
|
@gspencergoog I have some codegen changes collected in #81678. Let me submit that. |
e589242 to
fcc4250
Compare
|
This pull request is not suitable for automatic merging in its current state.
|
dkwingsmt
left a comment
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.
LGTM. I was reported this bug on macOS just now.
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.
Can you explain why you think this test is necessary?
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.
Because each PR needs to test what it is fixing.
This is testing for the failure of the generation code to generate the correct IDs for important values in keyboard navigation, which is what this PR is fixing. If one of those important values is missing or incorrect, the test will fail.
985c12f to
5958a2c
Compare
Description
I noticed that tab traversal stopped working on iOS when #73440 was landed.
It seems to be that the control characters were excluded from the list of logical keys, and so they ended up being generated values.
This PR just adds "Enter" and "Tab" to the list for both macOS and iOS.
Tests