Correct previous feature for raising tiled client

This commit is contained in:
Raphael Khaiat 2011-02-16 19:20:58 +01:00
parent 325f115c09
commit 7180d733bd

View File

@ -1190,8 +1190,8 @@ client_update_attributes(Client *c)
void
client_raise(Client *c)
{
if((!c || ((c->flags & TileFlag) && !(c->flags & AboveFlag)))
&& !conf.client_tile_raise)
if(!c || !(c->flags & AboveFlag)
|| ((c->flags & TileFlag) && !conf.client_tile_raise))
return;
XRaiseWindow(dpy, c->frame);