Remove wayland frame caluclation code

Disabling frame calculation for now, because, in the code, a call
for getting the geometry might return the size with the frame
included, so adding it in the resize call would result in doubling
the frame size.

Patch by: Henrique Dante de Almeida <hdante@profusion.mobi>



SVN revision: 82643
This commit is contained in:
Henrique Dante de Almeida 2013-01-11 16:43:14 +00:00 committed by Lucas De Marchi
parent 80c628daeb
commit ebbc9de6b9
1 changed files with 1 additions and 1 deletions

View File

@ -1873,7 +1873,7 @@ _elm_win_resize_objects_eval(Evas_Object *obj)
if ((maxw >= 0) && (w > maxw)) w = maxw;
if ((maxh >= 0) && (h > maxh)) h = maxh;
evas_object_move(obj, 0, 0);
evas_object_resize(obj, w + sd->fw, h + sd->fh);
evas_object_resize(obj, w, h);
}
static void