aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2011-10-25 20:01:18 +0100
committerConnor Lane Smith <cls@lubutu.com>2011-10-25 20:01:18 +0100
commit2b625eb73ed48ce671e497c60b61f4411c50c817 (patch)
treef197052d5ccf19186c2f28372420f97f08d50ad8
parent0f1f30daca0eaf0a400fd3f8d274594c07b32a51 (diff)
hide clients to the left, not the right
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index 39b0a51..d108e12 100644
--- a/dwm.c
+++ b/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);
}
}