discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=9dcc4f632f7a086a27af866d42e146caa91bce79
commit 9dcc4f632f7a086a27af866d42e146caa91bce79 Author: Mike Blumenkrantz <[email protected]> Date: Mon Jul 24 08:30:25 2017 -0400 only do configure for wl clients in commit when a buffer is attached a null attach does not require a resize, only a hide --- src/bin/e_comp_wl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index afefa76eb..7b0c83265 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1485,7 +1485,7 @@ _e_comp_wl_surface_state_commit(E_Client *ec, E_Comp_Wl_Surface_State *state) } } - if (state->new_attach) + if (state->new_attach && state->buffer) { if ((ec->comp_data->shell.surface) && (ec->comp_data->shell.configure)) ec->comp_data->shell.configure(ec->comp_data->shell.surface, --
