Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion shell/platform/linux/fl_accessible_node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ static AtkRole fl_accessible_node_get_role(AtkObject* accessible) {
return ATK_ROLE_IMAGE;
}

return ATK_ROLE_FRAME;
return ATK_ROLE_PANEL;
}

// Implements AtkObject::ref_state_set.
Expand Down
2 changes: 1 addition & 1 deletion shell/platform/linux/fl_view_accessible.cc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ static AtkObject* fl_view_accessible_ref_child(AtkObject* accessible, gint i) {

// Implements AtkObject::get_role
static AtkRole fl_view_accessible_get_role(AtkObject* accessible) {
return ATK_ROLE_FRAME;
return ATK_ROLE_PANEL;
}

static void fl_view_accessible_class_init(FlViewAccessibleClass* klass) {
Expand Down