discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=a4f74adddf8f36d00ff2fa09b9a7f7daf2ffcd76
commit a4f74adddf8f36d00ff2fa09b9a7f7daf2ffcd76 Author: Mike Blumenkrantz <[email protected]> Date: Sun Jun 8 12:27:54 2014 -0400 block client resize requests for fullscreen clients --- src/bin/e_comp_x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 81d3706..fc0f420 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -1505,7 +1505,7 @@ _e_comp_x_configure_request(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore } } - if (resize && (!ec->lock_client_size) && (move || (!ec->maximized))) + if (resize && (!ec->lock_client_size) && (move || ((!ec->maximized) && (!ec->fullscreen)))) { if ((ec->maximized & E_MAXIMIZE_TYPE) != E_MAXIMIZE_NONE) { --
