Browse Source

take bar into account

master
Anselm R Garbe 16 years ago
parent
commit
6bdef73a4f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      dwm.c

+ 1
- 1
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;
}


Loading…
Cancel
Save