We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e21a58d commit 27e62d0Copy full SHA for 27e62d0
shell/platform/linux/fl_accessible_node.cc
@@ -176,6 +176,13 @@ static AtkRole fl_accessible_node_get_role(AtkObject* accessible) {
176
if ((self->flags & kFlutterSemanticsFlagIsButton) != 0) {
177
return ATK_ROLE_PUSH_BUTTON;
178
}
179
+ if ((self->flags & (kFlutterSemanticsFlagHasCheckedState |
180
+ kFlutterSemanticsFlagHasToggledState)) != 0) {
181
+ return ATK_ROLE_CHECK_BOX;
182
+ }
183
+ if ((self->flags & kFlutterSemanticsFlagIsSlider) != 0) {
184
+ return ATK_ROLE_SLIDER;
185
186
if ((self->flags & kFlutterSemanticsFlagIsTextField) != 0) {
187
return ATK_ROLE_TEXT;
188
0 commit comments