Commit Diff


commit - 60c06a7cb42219953edf1fa752750eb98384a14b
commit + 6cf29bff33003a8ab00530115af14f8c270fa0da
blob - 7846be0b33b8caeb6c54b0191e92b55c23cffc62
blob + eba48ed2b12d96dbf5c131b518731dec775e23ad
--- dwm.c
+++ 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));