JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
set border at manage time
authorAnselm R. Garbe <arg@suckless.org>
Wed, 18 Apr 2007 19:11:46 +0000 (21:11 +0200)
committerAnselm R. Garbe <arg@suckless.org>
Wed, 18 Apr 2007 19:11:46 +0000 (21:11 +0200)
client.c

index caef85c..e9ea4c7 100644 (file)
--- a/client.c
+++ b/client.c
@@ -185,7 +185,6 @@ manage(Window w, XWindowAttributes *wa) {
        c->y = wa->y;
        c->w = wa->width;
        c->h = wa->height;
-       c->border = wa->border_width;
        if(c->w == sw && c->h == sh) {
                c->x = sx;
                c->y = sy;
@@ -204,7 +203,7 @@ manage(Window w, XWindowAttributes *wa) {
        XSelectInput(dpy, w,
                StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
        grabbuttons(c, False);
-       wc.border_width = BORDERPX;
+       c->border = wc.border_width = BORDERPX;
        XConfigureWindow(dpy, w, CWBorderWidth, &wc);
        XSetWindowBorder(dpy, w, dc.norm[ColBorder]);
        configure(c); /* propagates border_width, if size doesn't change */