tiling should not resize deleted clients

This commit is contained in:
Mike Blumenkrantz 2014-07-19 13:05:44 -04:00
parent d6c815edf2
commit a4619ea492
1 changed files with 3 additions and 2 deletions

View File

@ -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;
}