always updategeom when root is configured - dwm - dynamic window manager HTML git clone https://git.parazyd.org/dwm DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit 9c066c24b3d0b7767651f0f403db2e4007a847c8 DIR parent 0a668922a4de625d128a362d102844e33e36ae1c HTML Author: nsz@tpx <unknown> Date: Mon, 7 Sep 2009 11:46:02 +0200 always updategeom when root is configured Diffstat: M dwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/dwm.c b/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();