From 0c38ec7cd64dfc0bebccfcb0da2a2d250bf5f46e Mon Sep 17 00:00:00 2001 From: Anselm R Garbe Date: Sun, 22 Jun 2008 09:29:06 +0100 Subject: [PATCH] does this fix anything? --- dwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwm.c b/dwm.c index a5a9de2..fe2dc1f 100644 --- a/dwm.c +++ b/dwm.c @@ -929,7 +929,7 @@ manage(Window w, XWindowAttributes *wa) { XRaiseWindow(dpy, c->win); attach(c); attachstack(c); - XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); /* some windows require this */ + XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */ XMapWindow(dpy, c->win); setclientstate(c, NormalState); arrange(); -- 1.7.10.4