JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
applied Rudys barwidth patch, thanks Rudy
authorgarbeam@gmail.com <unknown>
Fri, 17 Jun 2011 19:22:54 +0000 (20:22 +0100)
committergarbeam@gmail.com <unknown>
Fri, 17 Jun 2011 19:22:54 +0000 (20:22 +0100)
dwm.c

diff --git a/dwm.c b/dwm.c
index 7846be0..eba48ed 100644 (file)
--- a/dwm.c
+++ b/dwm.c
@@ -585,11 +585,13 @@ void
 configurenotify(XEvent *e) {
        Monitor *m;
        XConfigureEvent *ev = &e->xconfigure;
+       Bool dirty;
 
        if(ev->window == root) {
+               dirty = (sw != ev->width);
                sw = ev->width;
                sh = ev->height;
-               if(updategeom()) {
+               if(updategeom() || dirty) {
                        if(dc.drawable != 0)
                                XFreePixmap(dpy, dc.drawable);
                        dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen));