JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
draw bar on exposure ;)
authorAnselm R. Garbe <garbeam@wmii.de>
Fri, 14 Jul 2006 16:46:12 +0000 (18:46 +0200)
committerAnselm R. Garbe <garbeam@wmii.de>
Fri, 14 Jul 2006 16:46:12 +0000 (18:46 +0200)
Makefile
config.mk
event.c

index 2b243ef..536960b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ dwm: ${OBJ}
        @${CC} -o $@ ${OBJ} ${LDFLAGS}
 
 clean:
-       rm -f dwm *.o core
+       rm -f dwm *.o core dwm-${VERSION}.tar.gz
 
 dist: clean
        mkdir -p dwm-${VERSION}
index 96ef58a..dcea1f8 100644 (file)
--- a/config.mk
+++ b/config.mk
@@ -14,12 +14,12 @@ VERSION = 0.1
 LIBS = -L${PREFIX}/lib -L/usr/lib -lc -L${X11LIB} -lX11
 
 # Linux/BSD
-CFLAGS = -Os -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
-       -DVERSION=\"${VERSION}\"
-LDFLAGS = ${LIBS}
-#CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
+#CFLAGS = -Os -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
 #      -DVERSION=\"${VERSION}\"
-#LDFLAGS = -g ${LIBS}
+#LDFLAGS = ${LIBS}
+CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
+       -DVERSION=\"${VERSION}\"
+LDFLAGS = -g ${LIBS}
 
 
 # Solaris
diff --git a/event.c b/event.c
index b027a3e..61dcec5 100644 (file)
--- a/event.c
+++ b/event.c
@@ -142,7 +142,9 @@ expose(XEvent *e)
        Client *c;
 
        if(ev->count == 0) {
-               if((c = gettitle(ev->window)))
+               if(barwin == ev->window)
+                       draw_bar();
+               else if((c = gettitle(ev->window)))
                        draw_client(c);
        }
 }