From: Shinwoo Kim Date: Wed, 29 Nov 2017 12:14:19 +0000 (+0900) Subject: atspi: do not accept ELM_ATSPI_ROLE_IMAGE_MAP X-Git-Tag: submit/tizen_4.0/20171214.114255~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ebf269fa23e5ff036bcc4b8662b30328579076c7;p=platform%2Fupstream%2Felementary.git atspi: do not accept ELM_ATSPI_ROLE_IMAGE_MAP There are two widgets using ELM_ATSPI_ROLE_IMAGE_MAP role. One is elm_mapbuf which does not have to grab highlight. It does not make sense because the elm_mapbuf only works for its content. The other is elm_map. So far the elm_map does not have to grab highlight, and it seems that the ELM_ATSPI_ROLE_IMAGE_MAP is improper role for elm_map. We have to find proper role for elm_map when it is neccesary to grab highlight. So this patch set would be reasonable. Change-Id: I8fc82c8f278b12f1e6367f4e40bf6b37c44b1481 --- diff --git a/src/lib/elm_widget.c b/src/lib/elm_widget.c index 37e23742d..cd93ca177 100644 --- a/src/lib/elm_widget.c +++ b/src/lib/elm_widget.c @@ -7354,6 +7354,7 @@ _elm_widget_atspi_role_acceptable_check(Eo *obj) case ELM_ATSPI_ROLE_SPLIT_PANE: case ELM_ATSPI_ROLE_WINDOW: case ELM_ATSPI_ROLE_IMAGE: + case ELM_ATSPI_ROLE_IMAGE_MAP: case ELM_ATSPI_ROLE_LIST: case ELM_ATSPI_ROLE_ICON: case ELM_ATSPI_ROLE_TOOL_BAR: