discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=2a6003318277836348080192964847aff1580a91
commit 2a6003318277836348080192964847aff1580a91 Author: Mike Blumenkrantz <[email protected]> Date: Fri Dec 11 15:05:01 2015 -0500 do not reapply x11 icccm state during fetch this is the value which has just been obtained, so don't create potential race conditions by sending it back to the client --- src/bin/e_comp_x.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 6564b44..8cc1170 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -3446,7 +3446,6 @@ _e_comp_x_hook_client_fetch(void *d EINA_UNUSED, E_Client *ec) ec->icccm.initial_state = ec->icccm.state; if (state != ec->icccm.state) { - ecore_x_icccm_state_set(win, ec->icccm.state); if (ec->icccm.state == ECORE_X_WINDOW_STATE_HINT_WITHDRAWN) ec->ignored = 1, ec->visible = 0; else --
