Parcourir la source

fix big-border corner case

Connor Lane Smith il y a 14 ans
Parent
commit
5ccd42f807
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      dwm.c

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