diff options
Diffstat (limited to 'src/events.c')
-rw-r--r-- | src/events.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/events.c b/src/events.c index bf47e7c..6151db0 100644 --- a/src/events.c +++ b/src/events.c @@ -220,8 +220,14 @@ configure_notify (XConfigureEvent *e) { rp_window *win; + /* ignore SubstructureNotify ConfigureNotify events. */ + if(e->event != e->window && e->send_event != True) + return; + win = find_window (e->window); + PRINT_DEBUG("event=%ld window=%ld\n", e->event, e->window); + if (win && win->state == NormalState) { if (win->height != e->height @@ -237,6 +243,9 @@ configure_notify (XConfigureEvent *e) know the real size of the window to increment properly. So, update the structure before calling maximize. */ + PRINT_DEBUG ("x=%d y=%d width=%d height=%d\n", e->x, e->y, e->width, e->height); + PRINT_DEBUG ("x=%d y=%d width=%d height=%d\n", win->x, win->y, win->width, win->height); + win->x = e->x; win->y = e->y; win->width = e->width; |