tasn pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=b16f04279a84f5e8332e791be5ecc60803fc6d14

commit b16f04279a84f5e8332e791be5ecc60803fc6d14
Author: Tom Hacohen <[email protected]>
Date:   Tue Jun 3 12:49:10 2014 +0100

    Tiling: Mark already deleted client as non-tilable.
    
    This should fix T1301, however I can't reproduce.
---
 src/modules/tiling/e_mod_tiling.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/modules/tiling/e_mod_tiling.c 
b/src/modules/tiling/e_mod_tiling.c
index 9d61950..46fc2bb 100644
--- a/src/modules/tiling/e_mod_tiling.c
+++ b/src/modules/tiling/e_mod_tiling.c
@@ -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;
 }
 

-- 


Reply via email to