From: Andy Spencer Date: Sun, 7 Apr 2013 03:39:32 +0000 (+0000) Subject: Fix closing focused window X-Git-Url: http://pileus.org/git/?p=wmpus;a=commitdiff_plain;h=08a8a76218133e513d7804fcc3307c895f22956b;hp=ffae19d0b7ffb85f14e1b598630a42cddbb0ffde Fix closing focused window --- 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);