updated configurenotify
6877205e
1 file(s) · +4 −1
| 423 | 423 | configurenotify(XEvent *e) { |
|
| 424 | 424 | XConfigureEvent *ev = &e->xconfigure; |
|
| 425 | 425 | ||
| 426 | - | if(ev->window == root && (ev->width != sw || ev->height != sh)) |
|
| 426 | + | if(ev->window == root && (ev->width != sw || ev->height != sh)) { |
|
| 427 | + | sw = ev->width; |
|
| 428 | + | sh = ev->height; |
|
| 427 | 429 | setgeom(NULL); |
|
| 430 | + | } |
|
| 428 | 431 | } |
|
| 429 | 432 | ||
| 430 | 433 | void |