atspi: set elm_access layer to MAX 63/153663/2
authorShinwoo Kim <cinoo.kim@samsung.com>
Fri, 29 Sep 2017 05:28:21 +0000 (14:28 +0900)
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>
Tue, 10 Oct 2017 04:26:50 +0000 (04:26 +0000)
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

index 2d03d448ace13b46a48d1edb37da2b294134d928..08a13929099e72a73f0f6402482c964d1a175422 100644 (file)
@@ -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;
 }