add short path to ensure ConfigureNotify event after request

fix T1485
This commit is contained in:
Mike Blumenkrantz 2014-09-05 15:00:51 -04:00
parent 33ff637a7c
commit 6318fd042b
1 changed files with 2 additions and 1 deletions

View File

@ -1606,7 +1606,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 */
if (((ec->maximized & E_MAXIMIZE_TYPE) != E_MAXIMIZE_NONE) && (move || resize))
if ((((ec->maximized & E_MAXIMIZE_TYPE) != E_MAXIMIZE_NONE) && (move || resize)) ||
((!move) && (!resize)))
_e_comp_x_client_move_resize_send(ec);
return ECORE_CALLBACK_PASS_ON;
}