Tiling2: Added maximized to the is_tilable checks.

This commit is contained in:
Tom Hacohen 2014-02-20 14:59:12 +00:00
parent 5e25cddeb1
commit 2b778b2aea
1 changed files with 4 additions and 3 deletions

View File

@ -179,9 +179,10 @@ is_tilable(const E_Client *ec)
return false;
if (ec->fullscreen)
{
return false;
}
return false;
if (ec->maximized)
return false;
if (ec->iconic)
return false;