Explorar el Código

fix big-border corner case

Connor Lane Smith hace 14 años
padre
commit
5ccd42f807
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
 	}
 }