Add text of elm.text to accessible_name_get
Because to support styles such as toast using elm.text
Change-Id: I6f6edf5e218f3d81aeb64aef5e540ce679c1a2f9
eina_strbuf_append_printf(buf, ", %s", sd->title_text);
else if (sd->text_content_obj)
eina_strbuf_append_printf(buf, ", %s", elm_object_text_get(sd->text_content_obj));
+ else if (elm_object_part_text_get(obj, "elm.text"))
+ eina_strbuf_append_printf(buf, ", %s", elm_object_part_text_get(obj, "elm.text"));
}
accessible_name = eina_strbuf_string_steal(buf);