aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorConnor Lane Smith2011-10-25 20:01:18 +0100
committerConnor Lane Smith2011-10-25 20:01:18 +0100
commite9d4e7cfb14b34b22fdcc15cee5535531a58aa43 (patch)
treeadc0a98aef74001b2abc987a14c566fb417717b9
parent2de46dc0f8d87fa14e560bfbf1589cab3fc6bb7c (diff)
downloadaur-e9d4e7cfb14b34b22fdcc15cee5535531a58aa43.tar.gz
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 39b0a51097d2..d108e12a8167 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);
}
}