discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=e8bcf1016f19cac78571068202fbb15edaafd205

commit e8bcf1016f19cac78571068202fbb15edaafd205
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Tue Oct 13 13:31:47 2015 -0400

    use correct param ordering for setting wayland client frame geometry
    
    function uses l,r,t,b and not x,y,xx,yy
    
    fix T2624
---
 src/bin/e_comp_wl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c
index 1699d83..8e774db 100644
--- a/src/bin/e_comp_wl.c
+++ b/src/bin/e_comp_wl.c
@@ -926,8 +926,8 @@ _e_comp_wl_surface_state_size_update(E_Client *ec, 
E_Comp_Wl_Surface_State *stat
    if (e_client_has_xwindow(ec) || e_comp_object_frame_exists(ec->frame)) 
return;
    window = &ec->comp_data->shell.window;
    if (window->x || window->y || window->w || window->h)
-     e_comp_object_frame_geometry_set(ec->frame, -window->x, -window->y,
-       (window->x + window->w) - state->bw,
+     e_comp_object_frame_geometry_set(ec->frame, -window->x, (window->x + 
window->w) - state->bw,
+       -window->y,
        (window->y + window->h) - state->bh);
    else
      e_comp_object_frame_geometry_set(ec->frame, 0, 0, 0, 0);

-- 


Reply via email to