pinosaur
/
dwm.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb5f99d
)
updated configurenotify
author
Anselm R Garbe
<garbeam@gmail.com>
Wed, 19 Mar 2008 09:27:17 +0000
(09:27 +0000)
committer
Anselm R Garbe
<garbeam@gmail.com>
Wed, 19 Mar 2008 09:27:17 +0000
(09:27 +0000)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
979d4c6
..
0f833b3
100644
(file)
--- 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