elm_win: Fixed the issue of updating ecore_wl_window location
authorvivek <vivek.ellur@samsung.com>
Thu, 8 Jan 2015 10:46:52 +0000 (19:46 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Thu, 8 Jan 2015 10:46:52 +0000 (19:46 +0900)
Summary:
@Fix

Signed-off-by: vivek <vivek.ellur@samsung.com>
Reviewers: devilhorns

Differential Revision: https://phab.enlightenment.org/D1856

src/lib/elm_win.c

index f2d8420ea0a1fb9d0181cab7e23e17b7c479406e..e5de5e8890a87735feae8e1d9580452991887f30 100644 (file)
@@ -1821,7 +1821,9 @@ _elm_win_evas_object_smart_move(Eo *obj, Elm_Win_Data *sd, Evas_Coord x, Evas_Co
      }
    if (sd->frame_obj)
      {
-        /* FIXME: We should update ecore_wl_window_location here !! */
+#ifdef HAVE_ELEMENTARY_WAYLAND
+        ecore_wl_window_update_location(sd->wl.win, x, y);
+#endif
         sd->screen.x = x;
         sd->screen.y = y;
      }