From d7915fabc33f45e6365c13c41f6641f0dfeb0f33 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 13 May 2016 14:06:21 -0400 Subject: ensure that window close events are processed immediately --- src/window-xlib.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/window-xlib.c b/src/window-xlib.c index 28b2de2..6989890 100644 --- a/src/window-xlib.c +++ b/src/window-xlib.c @@ -345,6 +345,7 @@ void runes_window_delete(RunesWindow *w) XCloseIM(im); XDestroyWindow(w->wb->dpy, w->w); XDestroyWindow(w->wb->dpy, w->border_w); + XFlush(w->wb->dpy); free(w); } -- cgit v1.2.3-54-g00ecf