simplified configurerequest to a bare minimum, removed wrong ban() calls
authorAnselm R. Garbe <arg@suckless.org>
Mon, 19 Feb 2007 11:34:12 +0100
changeset 768 b1dbe65d3e84
parent 767 074537180053
child 769 dc60583894e0
simplified configurerequest to a bare minimum, removed wrong ban() calls
client.c
event.c
--- a/client.c	Mon Feb 19 11:22:47 2007 +0100
+++ b/client.c	Mon Feb 19 11:34:12 2007 +0100
@@ -68,14 +68,6 @@
 /* extern */
 
 void
-ban(Client *c) {
-	if(!c || c->isbanned)
-		return;
-	c->isbanned = True;
-	XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
-}
-
-void
 configure(Client *c) {
 	XConfigureEvent ce;
 
--- a/event.c	Mon Feb 19 11:22:47 2007 +0100
+++ b/event.c	Mon Feb 19 11:34:12 2007 +0100
@@ -184,16 +184,9 @@
 				c->h = ev->height;
 			if((ev->value_mask & (CWX | CWY))
 			&& !(ev->value_mask & (CWWidth | CWHeight)))
-			{
 				configure(c);
-				if(isvisible(c))
-					XMoveWindow(dpy, c->win, c->x, c->y);
-			}
-			else {
+			if(isvisible(c))
 				XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
-				if(!isvisible(c))
-					ban(c);
-			}
 		}
 		else
 			configure(c);