Forced tiling/floating per window/application is now supported during client creation. reloadConfig() doesn't respect it yet

svn path=/trunk/KDE/kdebase/workspace/; revision=1123144
This commit is contained in:
Nikhil Marathe 2010-05-05 12:29:35 +00:00
parent a2a7891789
commit 49396e6197

View file

@ -134,6 +134,12 @@ bool Workspace::tileable( Client *c )
return false;
}
// 0 means tile it, if we get 1 (floating), don't tile
if( c->rules()->checkTilingOption( 0 ) == 1 )
{
return false;
}
return true;
}