take bar into account

This commit is contained in:
Anselm R Garbe 2008-05-19 17:27:30 +01:00
parent 234b12eb73
commit 6bdef73a4f
1 changed files with 1 additions and 1 deletions

2
dwm.c
View File

@ -963,7 +963,7 @@ manage(Window w, XWindowAttributes *wa) {
if(c->y + c->h + 2 * c->bw > sy + sh)
c->y = sy + sh - c->h - 2 * c->bw;
c->x = MAX(c->x, sx);
c->y = MAX(c->y, sy);
c->y = MAX(c->y, by == 0 ? bh : sy);
c->bw = borderpx;
}