discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=7bb0c661bdb50ecbfcaae3b23f8c2e91b2c67a1d
commit 7bb0c661bdb50ecbfcaae3b23f8c2e91b2c67a1d Author: Derek Foreman <[email protected]> Date: Wed Aug 8 14:58:47 2018 -0400 ee_wayland: Update configured state on short-circuit ack-configure Summary: When we BAIL from the configure callback with an immediate ack we don't properly update state, commit the ack, or allow ecore_wl2 to process a deferred ack_configure that happened during async rendering. Using a commit here instead should update internal state properly. ref T7243 Depends on D6783 Reviewers: zmike Reviewed By: zmike Subscribers: cedric, #reviewers, #committers, zmike Tags: #efl Maniphest Tasks: T7243 Differential Revision: https://phab.enlightenment.org/D6784 --- .../ecore_evas/engines/wayland/ecore_evas_wayland_common.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c index 6aa098e37f..9172593771 100644 --- a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c +++ b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c @@ -628,13 +628,7 @@ _ecore_evas_wl_common_cb_window_configure(void *data EINA_UNUSED, int type EINA_ wdata->win->req_config.serial && wdata->win->surface && ((!state_change) || ((pfw == fw) && (pfh == fh)))) { - if (wdata->win->xdg_configure_ack) - wdata->win->xdg_configure_ack(wdata->win->xdg_surface, - wdata->win->req_config.serial); - if (wdata->win->zxdg_configure_ack) - wdata->win->zxdg_configure_ack(wdata->win->zxdg_surface, - wdata->win->req_config.serial); - wdata->win->set_config.serial = wdata->win->req_config.serial; + ecore_wl2_window_commit(wdata->win, EINA_TRUE); } return ECORE_CALLBACK_RENEW; } --
