dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit 5ccd42f80752be8f5152e09ecd250ba42739bf6d
parent 1586b7a02d15df7648552ded5b370b80996dd94a
Author: Connor Lane Smith <cls@lubutu.com>
Date:   Sun, 30 Oct 2011 12:14:34 +0100

fix big-border corner case
Diffstat:
Mdwm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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);
     }
 }