discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=0bad7b60252bafa0ea6ca7a8b81fb36dbf10eb93
commit 0bad7b60252bafa0ea6ca7a8b81fb36dbf10eb93 Author: Mike Blumenkrantz <[email protected]> Date: Tue Apr 21 16:19:30 2015 -0400 unadjust frame coords when calculating wl surface placement during commit ec->y -> unadjust -> ec->client.y --- src/bin/e_comp_wl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index b1ecb11..4b8be36 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1013,7 +1013,7 @@ _e_comp_wl_surface_state_commit(E_Client *ec, E_Comp_Wl_Surface_State *state) _e_comp_wl_surface_state_size_update(ec, &ec->comp_data->pending); if (ec->changes.pos) - e_comp_object_frame_xy_adjust(ec->frame, ec->x, ec->y, &x, &y); + e_comp_object_frame_xy_unadjust(ec->frame, ec->x, ec->y, &x, &y); else x = ec->client.x, y = ec->client.y; --
