summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerek Foreman <derek.foreman.samsung@gmail.com>2018-12-05 10:34:01 -0600
committerDerek Foreman <derek.foreman.samsung@gmail.com>2018-12-14 10:29:58 -0600
commit12af5537c5bda20e676512aba2f94589bdbc9ed5 (patch)
treef7153eddc6b4034cb495b77ffe0ebf04bde48201
parent1139cde9a6917fb3f5285f777398272ad0cb6503 (diff)
downloadefl-12af5537c5bda20e676512aba2f94589bdbc9ed5.tar.gz
ee_wayland: Use object geometry instead of window geometry
wayland window geometry isn't currently being handled properly, but the ecore_evas geometry should be correct and coherent. Signed-off-by: Derek Foreman <derek.foreman.samsung@gmail.com> Reviewed-by: Chris Michael <cp.michael@samsung.com> Differential Revision: https://phab.enlightenment.org/D7435
-rw-r--r--src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
index 8b4b914cf1..76535c74ff 100644
--- a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
+++ b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
@@ -618,7 +618,7 @@ _ecore_evas_wl_common_cb_window_configure(void *data EINA_UNUSED, int type EINA_
nw = ev->w;
nh = ev->h;
- ecore_wl2_window_geometry_get(wdata->win, NULL, NULL, &ww, &wh);
+ ecore_evas_geometry_get(ee, NULL, NULL, &ww, &wh);
sw = ee->shadow.l + ee->shadow.r;
sh = ee->shadow.t + ee->shadow.b;