Move CLIENT_STICKY logic from client hide/unhide to group hide/unhide;
rationale being that clients should be able to hide/unhide independently of group switching.
This commit is contained in:
12
group.c
12
group.c
@@ -64,8 +64,10 @@ group_hide(struct group_ctx *gc)
|
||||
|
||||
screen_updatestackingorder(gc->sc);
|
||||
|
||||
TAILQ_FOREACH(cc, &gc->clientq, group_entry)
|
||||
client_hide(cc);
|
||||
TAILQ_FOREACH(cc, &gc->clientq, group_entry) {
|
||||
if (!(cc->flags & CLIENT_STICKY))
|
||||
client_hide(cc);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
@@ -73,8 +75,10 @@ group_show(struct group_ctx *gc)
|
||||
{
|
||||
struct client_ctx *cc;
|
||||
|
||||
TAILQ_FOREACH(cc, &gc->clientq, group_entry)
|
||||
client_unhide(cc);
|
||||
TAILQ_FOREACH(cc, &gc->clientq, group_entry) {
|
||||
if (!(cc->flags & CLIENT_STICKY))
|
||||
client_unhide(cc);
|
||||
}
|
||||
|
||||
group_restack(gc);
|
||||
group_setactive(gc);
|
||||
|
||||
Reference in New Issue
Block a user