aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-03-19 09:27:17 +0000
committerAnselm R Garbe <garbeam@gmail.com>2008-03-19 09:27:17 +0000
commit6877205e9d8eed2b839be98c40679fa45a93e0ca (patch)
treedb397db80375d0063c918be310e62fcd9703b889 /dwm.c
parentfb5f99d935cc298e7d142953efbc1e9982f26f19 (diff)
downloaddwm-6877205e9d8eed2b839be98c40679fa45a93e0ca.tar.gz
updated configurenotify
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c5
1 files changed, 4 insertions, 1 deletions
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
remember that computers suck.