devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=1187035fe669d2bfc77f600d2e5a8700eb1ff194

commit 1187035fe669d2bfc77f600d2e5a8700eb1ff194
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Wed Mar 1 10:25:35 2017 -0500

    ecore-wl2: Send surface_commit after ack_configure
    
    Small patch to ensure we send a surface commit after sending the
    ack_configure. This fixes an issue where E-WL internal windows would
    not maximize.
    
    Fixes T5192
    
    @fix
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 src/lib/ecore_wl2/ecore_wl2_window.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/lib/ecore_wl2/ecore_wl2_window.c 
b/src/lib/ecore_wl2/ecore_wl2_window.c
index 2e09cba..bc9038a 100644
--- a/src/lib/ecore_wl2/ecore_wl2_window.c
+++ b/src/lib/ecore_wl2/ecore_wl2_window.c
@@ -185,9 +185,11 @@ _zxdg_surface_cb_configure(void *data, struct 
zxdg_surface_v6 *zxdg_surface, uin
    Ecore_Wl2_Window *window;
    Ecore_Wl2_Event_Window_Configure_Complete *ev;
 
+   window = data;
+
    zxdg_surface_v6_ack_configure(zxdg_surface, serial);
+   wl_surface_commit(window->surface);
 
-   window = data;
    if (!window->pending.configure) return;
    window->pending.configure = EINA_FALSE;
 

-- 


Reply via email to