From 1da6b20a6b09c8d1240a0ce5d22009f86ea75bab Mon Sep 17 00:00:00 2001 From: Andy Spencer Date: Sun, 3 Jun 2012 04:55:02 +0000 Subject: [PATCH] Map windows for other non hidden states --- sys-x11.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys-x11.c b/sys-x11.c index 9775caf..e417e83 100644 --- a/sys-x11.c +++ b/sys-x11.c @@ -469,9 +469,11 @@ void sys_show(win_t *win, state_t state) return; case ST_FULL: printf("sys_show: full\n"); + XMapWindow(win->sys->dpy, win->sys->xid); return; case ST_SHADE: printf("sys_show: shade\n"); + XMapWindow(win->sys->dpy, win->sys->xid); return; case ST_ICON: printf("sys_show: icon\n"); -- 2.43.2