projects
/
platform
/
upstream
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
873c0ab
)
atspi: set elm_access layer to MAX
42/153842/1
author
Shinwoo Kim
<cinoo.kim@samsung.com>
Fri, 29 Sep 2017 05:28:21 +0000
(14:28 +0900)
committer
Shinwoo Kim
<cinoo.kim@samsung.com>
Sat, 30 Sep 2017 08:46:06 +0000
(17:46 +0900)
Set access object layer to max, because the highlight frame could be covered
by other object which has higher layer.
Change-Id: I16e54469f0c749fb2caab6da9ea68b8dc97d9b02
src/lib/elm_access.c
patch
|
blob
|
history
diff --git
a/src/lib/elm_access.c
b/src/lib/elm_access.c
index c32dffb02f63026886142837db7407755ccce751..40f3c97b4f45443e9d504adf495d84f4fa4a3018 100644
(file)
--- a/
src/lib/elm_access.c
+++ b/
src/lib/elm_access.c
@@
-967,6
+967,10
@@
_access_object_register(Evas_Object *obj, Evas_Object *parent)
ac = evas_object_data_get(ao, "_elm_access");
ac->part_object = obj;
+ /* set access object layer to max, because the highlight
+ frame could be covered by other object which has higher layer */
+ evas_object_layer_set(ao, EVAS_LAYER_MAX);
+
return ao;
}