discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=a4619ea4925c07e8f5a080adf326fbec9925e1f0
commit a4619ea4925c07e8f5a080adf326fbec9925e1f0 Author: Mike Blumenkrantz <[email protected]> Date: Sat Jul 19 13:05:44 2014 -0400 tiling should not resize deleted clients --- src/modules/tiling/window_tree.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/modules/tiling/window_tree.c b/src/modules/tiling/window_tree.c index 82b19d7..09df02b 100644 --- a/src/modules/tiling/window_tree.c +++ b/src/modules/tiling/window_tree.c @@ -277,8 +277,9 @@ _tiling_window_tree_level_apply(Window_Tree *root, Evas_Coord x, Evas_Coord y, if (root->client) { - tiling_e_client_move_resize_extra(root->client, x, y, - w - padding, h - padding); + if (!e_object_is_del(E_OBJECT(root->client))) + tiling_e_client_move_resize_extra(root->client, x, y, + w - padding, h - padding); return; } --
