about summary refs log tree commit diff
path: root/dmenu.c
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2019-02-04 00:29:26 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2019-02-04 19:49:34 +0100
commit153aaf88bf9bf5c6c4b118bd871f8cf1eafdcab5 (patch)
treed54f40d8d846756d33128db749b831afecde1bac /dmenu.c
parentPrepared 4.9 release. (diff)
downloaddmenu-153aaf88bf9bf5c6c4b118bd871f8cf1eafdcab5.tar.gz
dmenu-153aaf88bf9bf5c6c4b118bd871f8cf1eafdcab5.tar.bz2
dmenu-153aaf88bf9bf5c6c4b118bd871f8cf1eafdcab5.zip
Close when the embedding window is destroyed
Diffstat (limited to 'dmenu.c')
-rw-r--r--dmenu.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/dmenu.c b/dmenu.c
index 6b8f51b..f803149 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -556,6 +556,11 @@ run(void)
 		if (XFilterEvent(&ev, None))
 			continue;
 		switch(ev.type) {
+		case DestroyNotify:
+			if (ev.xdestroywindow.window != win)
+				break;
+			cleanup();
+			exit(1);
 		case Expose:
 			if (ev.xexpose.count == 0)
 				drw_map(drw, win, 0, 0, mw, mh);
@@ -667,7 +672,7 @@ setup(void)
 	XMapRaised(dpy, win);
 	XSetInputFocus(dpy, win, RevertToParent, CurrentTime);
 	if (embed) {
-		XSelectInput(dpy, parentwin, FocusChangeMask);
+		XSelectInput(dpy, parentwin, FocusChangeMask | SubstructureNotifyMask);
 		if (XQueryTree(dpy, parentwin, &dw, &w, &dws, &du) && dws) {
 			for (i = 0; i < du && dws[i] != win; ++i)
 				XSelectInput(dpy, dws[i], FocusChangeMask);