From 6877205e9d8eed2b839be98c40679fa45a93e0ca Mon Sep 17 00:00:00 2001 From: Anselm R Garbe Date: Wed, 19 Mar 2008 09:27:17 +0000 Subject: [PATCH] updated configurenotify --- dwm.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dwm.c b/dwm.c index 979d4c6..0f833b3 100644 --- a/dwm.c +++ b/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 -- 1.7.10.4