diff options
author | sabetts <sabetts> | 2001-06-05 09:07:18 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2001-06-05 09:07:18 +0000 |
commit | 622ea708ef80c3044838f32837254c6f74fe793e (patch) | |
tree | 624967ce6f5b866d64a9bcbfab888ceb160d63ba /src/manage.c | |
parent | b491c9ed23c5f1345914d0ffb2cbaea9662d1d61 (diff) | |
download | ratpoison-622ea708ef80c3044838f32837254c6f74fe793e.zip |
* src/manage.c (hide_window): ignore only StructureNotify events.
* src/data.h (WIN_EVENTS): Add StructureNotifyMask.
* src/events.c (unmap_notify): ignore SubstructureNotify unmaps.
Diffstat (limited to 'src/manage.c')
-rw-r--r-- | src/manage.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/manage.c b/src/manage.c index 8a7effc..030693c 100644 --- a/src/manage.c +++ b/src/manage.c @@ -501,8 +501,7 @@ hide_window (rp_window *win) if (win == NULL) return; /* Ignore the unmap_notify event. */ - XSelectInput(dpy, win->w, - WIN_EVENTS&~(StructureNotifyMask|EnterWindowMask)); + XSelectInput(dpy, win->w, WIN_EVENTS&~(StructureNotifyMask)); XUnmapWindow (dpy, win->w); XSelectInput (dpy, win->w, WIN_EVENTS); set_state (win, IconicState); |