about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-05-24 11:35:32 +0200
committerAnselm R. Garbe <arg@suckless.org>2007-05-24 11:35:32 +0200
commit5a9af492ae9fc6d28dc80bf3599d7eebda9136dd (patch)
tree799058f321f8f9937aa5a68b6db877f7d27ddf66
parent32563abe86100150645c285c9a769257836bd86d (diff)
downloaddwm-5a9af492ae9fc6d28dc80bf3599d7eebda9136dd.tar.gz
fixed issue reported by Christian Garbs
-rw-r--r--event.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/event.c b/event.c
index 4c0e4e7..2773c6f 100644
--- a/event.c
+++ b/event.c
@@ -218,11 +218,10 @@ configurenotify(XEvent *e) {
 	if (ev->window == root && (ev->width != sw || ev->height != sh)) {
 		sw = ev->width;
 		sh = ev->height;
-		wah = sh - bh;
-		waw = sw;
 		XFreePixmap(dpy, dc.drawable);
 		dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen));
 		XResizeWindow(dpy, barwin, sw, bh);
+		updatebarpos();
 		lt->arrange();
 	}
 }