tasn pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=a8d8844d5c792e921707ec1902cb554841f78833
commit a8d8844d5c792e921707ec1902cb554841f78833 Author: Tom Hacohen <[email protected]> Date: Thu Oct 23 13:37:08 2014 +0100 Fix tiling window properties restore issues with iconify. Windows properties (like border) weren't being restored on iconify. --- src/modules/tiling/e_mod_tiling.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/tiling/e_mod_tiling.c b/src/modules/tiling/e_mod_tiling.c index a549101..0f0f2f1 100644 --- a/src/modules/tiling/e_mod_tiling.c +++ b/src/modules/tiling/e_mod_tiling.c @@ -1259,7 +1259,7 @@ _iconify_hook(void *data EINA_UNUSED, int type EINA_UNUSED, if (ec->deskshow) return true; - _toggle_tiling_based_on_state(ec, EINA_FALSE); + _toggle_tiling_based_on_state(ec, EINA_TRUE); return true; } --
