From: Hosang Kim Date: Wed, 24 Mar 2021 06:58:11 +0000 (+0900) Subject: libaurum: find type of attributes with "t" X-Git-Tag: submit/tizen/20210412.073235~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e5433ece3bd19cdee9e7fb0ab0aa72850c03475;p=platform%2Fcore%2Fuifw%2Faurum.git libaurum: find type of attributes with "t" NUI/dali use keyword "t" instead of "type" Change-Id: I51986e6aadc9e98d2df48397ea9402a1ce42f3b9 --- diff --git a/libaurum/src/Impl/Accessibility/AtspiAccessibleNode.cc b/libaurum/src/Impl/Accessibility/AtspiAccessibleNode.cc index 82b1e61..f506502 100644 --- a/libaurum/src/Impl/Accessibility/AtspiAccessibleNode.cc +++ b/libaurum/src/Impl/Accessibility/AtspiAccessibleNode.cc @@ -180,6 +180,7 @@ void AtspiAccessibleNode::refresh() GHashTable *attributes = AtspiWrapper::Atspi_accessible_get_attributes(mNode, NULL); if (attributes) { char *t = (char*)g_hash_table_lookup(attributes, "type"); + if (!t) t = (char*)g_hash_table_lookup(attributes, "t"); char *s = (char*)g_hash_table_lookup(attributes, "style"); char *a = (char*)g_hash_table_lookup(attributes, "automationId");