Commit 5ccd42f

Connor Lane Smith <cls@lubutu.com>
2011-10-30 07:14:34
fix big-border corner case
1 parent 1586b7a
Changed files (1)
dwm.c
@@ -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);
 	}
 }