updated configurenotify 6877205e
Anselm R Garbe · 2008-03-19 09:27 1 file(s) · +4 −1
dwm.c +4 −1
423 423
configurenotify(XEvent *e) {
424 424
	XConfigureEvent *ev = &e->xconfigure;
425 425
426 -
	if(ev->window == root && (ev->width != sw || ev->height != sh))
426 +
	if(ev->window == root && (ev->width != sw || ev->height != sh)) {
427 +
		sw = ev->width;
428 +
		sh = ev->height;
427 429
		setgeom(NULL);
430 +
	}
428 431
}
429 432
430 433
void