ecore_evas/wayland: Put the default frame object in a lower layer.

The frame should not stay in the same layer as the other objects. If the
application wants to allow it to be on top of the content, then it must
provide a custom frame object and set it to that layer.

NOTE: Should we make Elementary's be on a lower layer too?
This commit is contained in:
Rafael Antognolli 2013-04-18 19:04:07 -03:00
parent e937f1f5a3
commit 89960340d7
1 changed files with 1 additions and 0 deletions

View File

@ -214,6 +214,7 @@ ecore_evas_wayland_shm_new_internal(const char *disp_name, unsigned int parent,
wdata->frame = _ecore_evas_wl_common_frame_add(ee->evas);
evas_object_is_frame_object_set(wdata->frame, EINA_TRUE);
evas_object_move(wdata->frame, 0, 0);
evas_object_layer_set(wdata->frame, -9999);
}
ee->engine.func->fn_render = _ecore_evas_wl_common_render;