ecore_evas: fix position error 46/224746/2
authorDoyoun Kang <doyoun.kang@samsung.com>
Wed, 12 Feb 2020 07:38:10 +0000 (16:38 +0900)
committerJongmin Lee <jm105.lee@samsung.com>
Thu, 13 Feb 2020 21:47:46 +0000 (06:47 +0900)
There was a bug that the tizen_position_set after handling tizen_position change event.
This caused a corruption of window position.

@tizen_fix

Change-Id: Ie004f929de85be4dcf3bbf6911a289f3ae6f1325
Signed-off-by: Doyoun Kang <doyoun.kang@samsung.com>
src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index cca447d..e61e79b
@@ -670,6 +670,9 @@ _ecore_evas_wl_common_cb_window_configure(void *data EINA_UNUSED, int type EINA_
    nx = ev->x;
    ny = ev->y;
 //
+// TIZEN_ONLY(20200212) : get window position by window_geometry
+   ecore_wl2_window_geometry_get(wdata->win, &nx, &ny, NULL, NULL);
+//
 
    ecore_evas_geometry_get(ee, NULL, NULL, &ww, &wh);