raster pushed a commit to branch master.

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

commit f8ced14ed63c4144a185c697fe1004fbabd9a35e
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Wed Mar 26 17:08:24 2014 +0900

    elm win - fix tracking of current position to properly store it in win obj
    
    @fix of win tracking bug
---
 src/lib/elm_win.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c
index 4de7129..131e817 100644
--- a/src/lib/elm_win.c
+++ b/src/lib/elm_win.c
@@ -626,6 +626,9 @@ _elm_win_move(Ecore_Evas *ee)
    sd->screen.x = x;
    sd->screen.y = y;
    evas_object_smart_callback_call(sd->obj, SIG_MOVED, NULL);
+   evas_nochange_push(evas_object_evas_get(sd->obj));
+   evas_object_move(sd->obj, x, y);
+   evas_nochange_pop(evas_object_evas_get(sd->obj));
 }
 
 static void

-- 


Reply via email to