Ensure we don't action on the last group when the requested one is not found.

This commit is contained in:
okan 2019-02-28 23:20:52 +00:00
parent 8cd6d1154c
commit 880b5cda3f

14
group.c
View File

@ -160,15 +160,14 @@ group_movetogroup(struct client_ctx *cc, int idx)
return;
TAILQ_FOREACH(gc, &sc->groupq, entry) {
if (gc->num == idx)
break;
}
if (gc->num == idx) {
if (cc->gc == gc)
return;
if (gc->num != 0 && group_holds_only_hidden(gc))
client_hide(cc);
group_assign(gc, cc);
}
}
}
void
@ -221,10 +220,7 @@ group_hidetoggle(struct screen_ctx *sc, int idx)
return;
TAILQ_FOREACH(gc, &sc->groupq, entry) {
if (gc->num == idx)
break;
}
if (gc->num == idx) {
if (group_holds_only_hidden(gc))
group_show(gc);
else {
@ -233,6 +229,8 @@ group_hidetoggle(struct screen_ctx *sc, int idx)
if (TAILQ_EMPTY(&gc->clientq))
group_setactive(gc);
}
}
}
}
void