Pārlūkot izejas kodu

I changed sanders patch to fix the ff issue to be simplier, though it needs testing if this really fixes the issue

Anselm R. Garbe 19 gadi atpakaļ
vecāks
revīzija
b427a2c6cb
1 mainītis faili ar 2 papildinājumiem un 3 dzēšanām
  1. 2 3
      event.c

+ 2 - 3
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);