From 1187035fe669d2bfc77f600d2e5a8700eb1ff194 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Wed, 1 Mar 2017 10:25:35 -0500 Subject: [PATCH] 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 --- 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; -- 2.7.4