raster pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=aa1964d5ab1ebe10cc6ffc8f22622551e75561f4

commit aa1964d5ab1ebe10cc6ffc8f22622551e75561f4
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Fri Mar 28 20:08:19 2014 +0900

    win - fix reset to 0 0 geom when window resizes. should stay at cur pos
    
    this is a side-effect of the fix to track actual position properly
---
 src/lib/elm_win.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c
index 9794ab9..31e215a 100644
--- a/src/lib/elm_win.c
+++ b/src/lib/elm_win.c
@@ -1998,7 +1998,6 @@ _elm_win_resize_objects_eval(Evas_Object *obj)
    if (h < minh) h = minh;
    if (w > maxw) w = maxw;
    if (h > maxh) h = maxh;
-   evas_object_move(obj, 0, 0);
    evas_object_resize(obj, w, h);
 }
 

-- 


Reply via email to