atspi utils: Fix an oversight

gtk_accessible_role_to_atspi_role must always return
an atspi role. The fallback was returning an aria
role.
This commit is contained in:
Matthias Clasen 2020-10-10 09:23:49 -04:00
parent d6b64b5e29
commit edfc55ae89

View File

@ -273,7 +273,7 @@ gtk_accessible_role_to_atspi_role (GtkAccessibleRole role)
break;
}
return GTK_ACCESSIBLE_ROLE_WIDGET;
return ATSPI_ROLE_FILLER;
}
GVariant *