Browse Source

updated configurenotify

Anselm R Garbe 17 năm trước cách đây
mục cha
commit
6877205e9d
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      dwm.c

+ 4 - 1
dwm.c

@@ -423,8 +423,11 @@ void
 configurenotify(XEvent *e) {
 	XConfigureEvent *ev = &e->xconfigure;
 
-	if(ev->window == root && (ev->width != sw || ev->height != sh))
+	if(ev->window == root && (ev->width != sw || ev->height != sh)) {
+		sw = ev->width;
+		sh = ev->height;
 		setgeom(NULL);
+	}
 }
 
 void