-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Announce block selection changes manually on windows #24299
Conversation
// See WordPress/gutenberg#24121 and nvaccess/nvda#5825 for more details | ||
// To solve it we announce the focus change manually. | ||
if ( isWindows() ) { | ||
speak( label ); |
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.
I also wondered whether I should announce something like label + ', button'
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.
I think label is good enough.
Size Change: +27 B (0%) Total Size: 1.16 MB
ℹ️ View Unchanged
|
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 👍
// See WordPress/gutenberg#24121 and nvaccess/nvda#5825 for more details | ||
// To solve it we announce the focus change manually. | ||
if ( isWindows() ) { | ||
speak( label ); |
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.
I think label is good enough.
refs #24121
In NVDA on Windows, the block selection changes are not announced properly on Navigation Mode (Gutenberg's navigation mode).
As discussed on the issue, this solves the issue by announcing the blocks manually.