discomfitor pushed a commit to branch enlightenment-0.21. http://git.enlightenment.org/core/enlightenment.git/commit/?id=26e2a96d1f47aa985c82343acf7b765613ac49af
commit 26e2a96d1f47aa985c82343acf7b765613ac49af Author: Mike Blumenkrantz <[email protected]> Date: Wed Mar 22 16:15:15 2017 -0400 slightly optimize maximize -> fullscreen protocol comms for wl clients this is a no-op since a configure will be sent later --- src/bin/e_comp_wl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 3b0b286..8d6cc94 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -783,7 +783,7 @@ _e_comp_wl_evas_cb_unmaximize_pre(void *data, Evas_Object *obj EINA_UNUSED, void E_Client *ec = data; E_Maximize *max = event_info; - if (e_object_is_del(E_OBJECT(ec))) return; + if (ec->need_fullscreen || e_object_is_del(E_OBJECT(ec))) return; if (ec->comp_data->in_commit) ec->comp_data->maximizing = 1; else if (!e_client_has_xwindow(ec)) --
