Fix client_tile_raise feature
This commit is contained in:
@@ -1212,8 +1212,8 @@ client_update_attributes(Client *c)
|
|||||||
void
|
void
|
||||||
client_raise(Client *c)
|
client_raise(Client *c)
|
||||||
{
|
{
|
||||||
if(!c || !(c->flags & AboveFlag)
|
if((!c || ((c->flags & TileFlag) && !(c->flags & AboveFlag)))
|
||||||
|| ((c->flags & TileFlag) && (!conf.client_tile_raise)))
|
&& !conf.client_tile_raise)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
XRaiseWindow(dpy, c->frame);
|
XRaiseWindow(dpy, c->frame);
|
||||||
|
|||||||
Reference in New Issue
Block a user