ecore_evas/wayland: Ecore_Evas geometry should report the client size.

The real canvas size contains enough space for rendering the frame, but
ecore_evas_geometry_get() should be consistent accross all the engines
and report only the client area.
This commit is contained in:
Rafael Antognolli 2013-03-22 16:18:10 -03:00
parent 262c67b56d
commit b73786814c
1 changed files with 2 additions and 2 deletions

View File

@ -208,8 +208,8 @@ _ecore_evas_wl_common_cb_window_configure(void *data EINA_UNUSED, int type EINA_
{
ee->req.w = nw;
ee->req.h = nh;
ee->w = ev->w;
ee->h = ev->h;
ee->w = nw;
ee->h = nh;
if (ee->func.fn_resize) ee->func.fn_resize(ee);
if ((ee->rotation == 90) || (ee->rotation == 270))