fix big-border corner case

This commit is contained in:
Connor Lane Smith 2011-10-30 12:14:34 +01:00
parent 1586b7a02d
commit 5ccd42f807
1 changed files with 1 additions and 1 deletions

2
dwm.c
View File

@ -1606,7 +1606,7 @@ showhide(Client *c) {
}
else { /* hide clients bottom up */
showhide(c->snext);
XMoveWindow(dpy, c->win, c->w * -2, c->y);
XMoveWindow(dpy, c->win, WIDTH(c) * -2, c->y);
}
}