summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2014-09-05 15:00:51 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2014-09-05 15:01:52 -0400
commit6318fd042b95f74371d74b3272e28100328a9bf8 (patch)
tree17a06011e69069b65799b0881a1e1ea7d8cd5478
parent33ff637a7c0b94ee7e2d29ac9855a35a7d9c35d2 (diff)
downloadenlightenment-6318fd042b95f74371d74b3272e28100328a9bf8.tar.gz
add short path to ensure ConfigureNotify event after request
fix T1485
-rw-r--r--src/bin/e_comp_x.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c
index 2c9d37e16a..6218ef1157 100644
--- a/src/bin/e_comp_x.c
+++ b/src/bin/e_comp_x.c
@@ -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;
}