discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=e8f4f30f40a60cf5dd122833d59185d8a18b8f34
commit e8f4f30f40a60cf5dd122833d59185d8a18b8f34 Author: Mike Blumenkrantz <[email protected]> Date: Tue Nov 24 17:29:53 2015 -0500 adjust for SSD geometry during wayland client resize client moveinfo includes the frame geometry, so this must be taken into account when resizing a client which has a frame fix T2863 --- src/bin/e_comp_wl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 7ed06db..4c644b3 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -580,6 +580,8 @@ _e_comp_wl_evas_cb_resize(void *data, Evas_Object *obj EINA_UNUSED, void *event x = ec->mouse.last_down[ec->moveinfo.down.button - 1].w; y = ec->mouse.last_down[ec->moveinfo.down.button - 1].h; + if (e_comp_object_frame_exists(ec->frame)) + e_comp_object_frame_wh_unadjust(ec->frame, x, y, &x, &y); switch (ec->resize_mode) { --
