diff options
| -rw-r--r-- | tabbed.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -93,6 +93,7 @@ static void clientmessage(const XEvent *e); static void configurenotify(const XEvent *e); static void configurerequest(const XEvent *e); static void createnotify(const XEvent *e); +static void unmapnotify(const XEvent *e); static void destroynotify(const XEvent *e); static void die(const char *errstr, ...); static void drawbar(void); @@ -141,6 +142,7 @@ static void (*handler[LASTEvent]) (const XEvent *) = { [ConfigureNotify] = configurenotify, [ConfigureRequest] = configurerequest, [CreateNotify] = createnotify, + [UnmapNotify] = unmapnotify, [DestroyNotify] = destroynotify, [Expose] = expose, [FocusIn] = focusin, @@ -286,6 +288,15 @@ createnotify(const XEvent *e) { } void +unmapnotify(const XEvent *e) { + const XUnmapEvent *ev = &e->xunmap; + int c; + + if((c = getclient(ev->window)) > -1) + unmanage(c); +} + +void destroynotify(const XEvent *e) { const XDestroyWindowEvent *ev = &e->xdestroywindow; int c; |