From 8cd6d1154c6e5198403270a66fffb8a4f0c56cf6 Mon Sep 17 00:00:00 2001 From: okan Date: Thu, 28 Feb 2019 13:11:53 +0000 Subject: Selectively hide and show clients based on state; merge client_unhide() and client_show(). --- group.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'group.c') diff --git a/group.c b/group.c index 30fe718..666186b 100644 --- a/group.c +++ b/group.c @@ -67,7 +67,8 @@ group_hide(struct group_ctx *gc) screen_updatestackingorder(gc->sc); TAILQ_FOREACH(cc, &gc->clientq, group_entry) { - if (!(cc->flags & CLIENT_STICKY)) + if (!(cc->flags & CLIENT_STICKY) && + !(cc->flags & CLIENT_HIDDEN)) client_hide(cc); } } @@ -78,8 +79,9 @@ group_show(struct group_ctx *gc) struct client_ctx *cc; TAILQ_FOREACH(cc, &gc->clientq, group_entry) { - if (!(cc->flags & CLIENT_STICKY)) - client_unhide(cc); + if (!(cc->flags & CLIENT_STICKY) && + (cc->flags & CLIENT_HIDDEN)) + client_show(cc); } group_restack(gc); -- cgit 1.4.1