discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=57903b7aa324a8b12a2954fef972c570fa714ce2
commit 57903b7aa324a8b12a2954fef972c570fa714ce2 Author: Mike Blumenkrantz <[email protected]> Date: Fri Jan 24 16:20:21 2014 -0500 only send ICCCM move/resize if it isn't already going to be sent --- src/bin/e_comp_x.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 90c4baf..8379e88 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -1572,7 +1572,8 @@ _e_comp_x_configure_request(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore } /* FIXME: need to send synthetic stacking event too as well as move/resize */ - _e_comp_x_client_move_resize_send(ec); + if (((ec->maximized & E_MAXIMIZE_TYPE) != E_MAXIMIZE_NONE) && (move || resize)) + _e_comp_x_client_move_resize_send(ec); return ECORE_CALLBACK_PASS_ON; } --
