Tiling: Mark already deleted client as non-tilable.

This should fix T1301, however I can't reproduce.
This commit is contained in:
Tom Hacohen 2014-06-03 12:49:10 +01:00
parent 70e9b54dde
commit b16f04279a
1 changed files with 3 additions and 0 deletions

View File

@ -208,6 +208,9 @@ is_tilable(const E_Client *ec)
if (e_client_util_ignored_get(ec))
return false;
if (e_object_is_del(E_OBJECT(ec)))
return false;
return true;
}