aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2011-10-30 12:14:34 +0100
committerConnor Lane Smith <cls@lubutu.com>2011-10-30 12:14:34 +0100
commit5ccd42f80752be8f5152e09ecd250ba42739bf6d (patch)
treef50cd638c4f6a9fd14ead6b1fe6224cd56b9130c
parent1586b7a02d15df7648552ded5b370b80996dd94a (diff)
fix big-border corner case
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index cce215a..8dbe83b 100644
--- a/dwm.c
+++ b/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);
}
}