From 08a8a76218133e513d7804fcc3307c895f22956b Mon Sep 17 00:00:00 2001 From: Andy Spencer Date: Sun, 7 Apr 2013 03:39:32 +0000 Subject: [PATCH 1/1] Fix closing focused window --- sys-x11.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-x11.c b/sys-x11.c index f475a83..1a833da 100644 --- a/sys-x11.c +++ b/sys-x11.c @@ -61,6 +61,7 @@ typedef enum { /* Global data */ static win_t *root; +static win_t *last; static int running; static void *cache; static Atom atoms[NATOMS]; @@ -299,6 +300,8 @@ static win_t *win_find(Display *dpy, Window xid, int create) static void win_free(win_t *win) { + if (win == last) + last = NULL; free(win->sys); free(win); } @@ -569,7 +572,6 @@ void sys_focus(win_t *win) //win_msg(win, WM_FOCUS); /* Set border on focused window */ - static win_t *last = NULL; if (last) XSetWindowBorder(last->sys->dpy, last->sys->xid, colors[CLR_UNFOCUS]); XSync(win->sys->dpy, False); -- 2.43.2