On 24/10/2011, Anselm R Garbe <garb...@gmail.com> wrote:
> How come? The negative land is not mapped.

I would have expected the window to reach the same invisible limit as
it does when moved to the right. But according to Matt on IRC it works
fine if you patch dwm to move the window left instead of right;
something like the patch attached. So I stand corrected. ;)

cls
diff -r b899c8748939 dwm.c
--- a/dwm.c	Mon Aug 15 18:44:12 2011 +0200
+++ b/dwm.c	Mon Oct 24 22:50:44 2011 +0100
@@ -1597,7 +1597,7 @@
 	}
 	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);
 	}
 }
 

Reply via email to