From 7eef4eb63d7d2b2295091e6c1ccb68449e5a05e5 Mon Sep 17 00:00:00 2001 From: okan Date: Wed, 17 Sep 2014 16:30:21 +0000 Subject: don't toggle _WM_STATE_HIDDEN here yet --- client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client.c') diff --git a/client.c b/client.c index 32774e6..55b32e4 100644 --- a/client.c +++ b/client.c @@ -497,7 +497,7 @@ client_hide(struct client_ctx *cc) XUnmapWindow(X_Dpy, cc->win); cc->flags &= ~CLIENT_ACTIVE; - client_hidden(cc); + cc->flags |= CLIENT_HIDDEN; client_set_wm_state(cc, IconicState); if (cc == client_current()) @@ -512,7 +512,7 @@ client_unhide(struct client_ctx *cc) XMapRaised(X_Dpy, cc->win); - client_hidden(cc); + cc->flags &= ~CLIENT_HIDDEN; client_set_wm_state(cc, NormalState); client_draw_border(cc); } -- cgit 1.4.1