-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Bump accesskit and accesskit_winit. #16234
Conversation
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 this is important to try and land, but the conflict in the name Node
is pretty unfortunate in the examples. I've proposed adding a new
method to Bevy's AccessibilityNode
as a way to avoid needing accesskit::Node
in the end-user's namespace.
Head branch was pushed to by a user without write access
# Objective - Bumps accesskit and accesskit_winit dependencies ## Solution - Fixes several breaking API changes introduced in accesskit 0.23. ## Testing - Tested with the ui example and seems to work comparably
# Objective AccessKit/accesskit#475 changed how text content should be set for AccessKit nodes with a role of `Label`. This was unfortunately missing from #16234. ## Solution When building an `accesskit::Node` with `Role::Label`, calls `set_value` instead of `set_label` on the node to set its content. ## Testing I can't test this right now on my Windows machine due to a compilation error with wgpu-hal I have no idea how to resolve.
# Objective AccessKit/accesskit#475 changed how text content should be set for AccessKit nodes with a role of `Label`. This was unfortunately missing from #16234. ## Solution When building an `accesskit::Node` with `Role::Label`, calls `set_value` instead of `set_label` on the node to set its content. ## Testing I can't test this right now on my Windows machine due to a compilation error with wgpu-hal I have no idea how to resolve.
# Objective - Bumps accesskit and accesskit_winit dependencies ## Solution - Fixes several breaking API changes introduced in accesskit 0.23. ## Testing - Tested with the ui example and seems to work comparably
# Objective AccessKit/accesskit#475 changed how text content should be set for AccessKit nodes with a role of `Label`. This was unfortunately missing from bevyengine#16234. ## Solution When building an `accesskit::Node` with `Role::Label`, calls `set_value` instead of `set_label` on the node to set its content. ## Testing I can't test this right now on my Windows machine due to a compilation error with wgpu-hal I have no idea how to resolve.
Objective
Solution
Testing