tupdated configurenotify - dwm - [fork] customized build of dwm, the dynamic window manager
HTML git clone git://src.adamsgaard.dk/dwm
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 6877205e9d8eed2b839be98c40679fa45a93e0ca
DIR parent fb5f99d935cc298e7d142953efbc1e9982f26f19
HTML Author: Anselm R Garbe <garbeam@gmail.com>
Date: Wed, 19 Mar 2008 09:27:17 +0000
updated configurenotify
Diffstat:
M dwm.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
DIR diff --git a/dwm.c b/dwm.c
t@@ -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