JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
simplified configurerequest to a bare minimum, removed wrong ban() calls
authorAnselm R. Garbe <arg@suckless.org>
Mon, 19 Feb 2007 10:34:12 +0000 (11:34 +0100)
committerAnselm R. Garbe <arg@suckless.org>
Mon, 19 Feb 2007 10:34:12 +0000 (11:34 +0100)
client.c
event.c

index bc26997..79cd698 100644 (file)
--- a/client.c
+++ b/client.c
@@ -68,14 +68,6 @@ xerrordummy(Display *dsply, XErrorEvent *ee) {
 /* 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;
 
diff --git a/event.c b/event.c
index 153b49a..db3ce46 100644 (file)
--- a/event.c
+++ b/event.c
@@ -184,16 +184,9 @@ configurerequest(XEvent *e) {
                                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);