implemented fallback for too many clients in stacked mode

This commit is contained in:
arg@10ksloc.org
2006-07-19 13:36:04 +02:00
parent 18be893b66
commit 79cd408844
2 changed files with 10 additions and 3 deletions

View File

@ -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);