Commit 2b625eb

Connor Lane Smith <cls@lubutu.com>
2011-10-25 15:01:18
hide clients to the left, not the right
1 parent 0f1f30d
Changed files (1)
dwm.c
@@ -1597,7 +1597,7 @@ showhide(Client *c) {
 	}
 	else { /* hide clients bottom up */
 		showhide(c->snext);
-		XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
+		XMoveWindow(dpy, c->win, c->w * -2, c->y);
 	}
 }