discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=b817db7f09e6733fc59310a393494a60d9ea8910
commit b817db7f09e6733fc59310a393494a60d9ea8910 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Fri Aug 4 16:23:38 2017 -0400 center wl clients on their parent when doing first commit this resolves some bizarro pointer warping --- 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 950b4957d..a967a53f8 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1349,6 +1349,8 @@ _e_comp_wl_surface_state_commit(E_Client *ec, E_Comp_Wl_Surface_State *state) { ec->take_focus = !starting || ec->internal_elm_win; ec->want_focus = ec->override && !e_client_util_is_popup(ec) && !ec->parent; + if (ec->parent && (!ec->lock_user_location)) + e_comp_object_util_center_on(ec->frame, ec->parent->frame); } } --