commit 5ccd42f80752be8f5152e09ecd250ba42739bf6d from: Connor Lane Smith date: Sun Oct 30 11:14:34 2011 UTC fix big-border corner case commit - 1586b7a02d15df7648552ded5b370b80996dd94a commit + 5ccd42f80752be8f5152e09ecd250ba42739bf6d blob - cce215a9c63d723067d8391b893f593fc87c862a blob + 8dbe83baead81e6224016e8b05c639a73c378024 --- dwm.c +++ 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); } }