hide clients to the left, not the right

This commit is contained in:
Connor Lane Smith 2011-10-25 20:01:18 +01:00
parent 0f1f30daca
commit 2b625eb73e
1 changed files with 1 additions and 1 deletions

2
dwm.c
View File

@ -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);
}
}