Commit b427a2c

Anselm R. Garbe <arg@10kloc.org>
2006-09-29 06:56:01
I changed sanders patch to fix the ff issue to be simplier, though it needs testing if this really fixes the issue
1 parent 14d05e7
Changed files (1)
event.c
@@ -177,9 +177,8 @@ configurerequest(XEvent *e) {
 			configure(c);
 		XSync(dpy, False);
 		if(c->isfloat) {
-			resize(c, False, TopLeft);
-			if(!isvisible(c))
-				ban(c);
+			if(isvisible(c))
+				resize(c, False, TopLeft);
 		}
 		else
 			arrange(NULL);