Browse Source

always updategeom when root is configured

nsz@tpx 16 years ago
parent
commit
9c066c24b3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dwm.c

+ 1 - 1
dwm.c

@@ -530,7 +530,7 @@ configurenotify(XEvent *e) {
 	Monitor *m;
 	XConfigureEvent *ev = &e->xconfigure;
 
-	if(ev->window == root && (ev->width != sw || ev->height != sh)) {
+	if(ev->window == root) {
 		sw = ev->width;
 		sh = ev->height;
 		updategeom();