Remove wayland frame caluclation code
authorHenrique Dante de Almeida <hdante@profusion.mobi>
Fri, 11 Jan 2013 16:43:14 +0000 (16:43 +0000)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Fri, 11 Jan 2013 16:43:14 +0000 (16:43 +0000)
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

legacy/elementary/src/lib/elm_win.c

index f980cdd..4d12d23 100644 (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, wh);
 }
 
 static void