implemented fallback for too many clients in stacked mode
This commit is contained in:
parent
18be893b66
commit
79cd408844
2 changed files with 10 additions and 3 deletions
5
client.c
5
client.c
|
@ -201,8 +201,6 @@ manage(Window w, XWindowAttributes *wa)
|
|||
c->win = w;
|
||||
c->bx = c->fx = c->tx = wa->x;
|
||||
c->by = c->fy = c->ty = wa->y;
|
||||
if(c->fy < bh)
|
||||
c->by = c->fy = c->ty += bh;
|
||||
c->bw = c->fw = c->tw = wa->width;
|
||||
c->fh = c->th = wa->height;
|
||||
c->bh = bh;
|
||||
|
@ -212,6 +210,9 @@ manage(Window w, XWindowAttributes *wa)
|
|||
diff = sh - c->fh - bh;
|
||||
c->fy = random() % (diff ? diff : 1);
|
||||
|
||||
if(c->fy < bh)
|
||||
c->by = c->fy = c->ty = bh;
|
||||
|
||||
c->border = 1;
|
||||
c->proto = getproto(c->win);
|
||||
setsize(c);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue