discomfitor pushed a commit to branch master.

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

commit 9e4fe82fbce0200938b68697f8000afb66c42c0e
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Fri Jul 24 16:34:18 2015 -0400

    always send geometry to configure method for wayland clients when not 
resizing
    
    failure to set this would lead to clients changing geometry when maximized 
while
    focus state was removed
---
 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 7876564..e0438a3 100644
--- a/src/bin/e_comp_wl.c
+++ b/src/bin/e_comp_wl.c
@@ -2254,7 +2254,7 @@ _e_comp_wl_client_cb_focus_set(void *data EINA_UNUSED, 
E_Client *ec)
      {
         if (ec->comp_data->shell.surface)
           ec->comp_data->shell.configure_send(ec->comp_data->shell.surface,
-                                              0, 0, 0);
+                                              0, ec->client.w, ec->client.h);
      }
 
    //if ((ec->icccm.take_focus) && (ec->icccm.accepts_focus))
@@ -2283,7 +2283,7 @@ _e_comp_wl_client_cb_focus_unset(void *data EINA_UNUSED, 
E_Client *ec)
      {
         if (ec->comp_data->shell.surface)
           ec->comp_data->shell.configure_send(ec->comp_data->shell.surface,
-                                              0, 0, 0);
+                                              0, ec->client.w, ec->client.h);
      }
 
    _e_comp_wl_focus_check();

-- 


Reply via email to