atspi: set elm_access layer to MAX 42/153842/1
authorShinwoo Kim <cinoo.kim@samsung.com>
Fri, 29 Sep 2017 05:28:21 +0000 (14:28 +0900)
committerShinwoo 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

index c32dffb02f63026886142837db7407755ccce751..40f3c97b4f45443e9d504adf495d84f4fa4a3018 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;
 }