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:
parent
a2a7891789
commit
49396e6197
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue