awesomebar: use previously tiled when hiding client and the hidden client was the last tiled client

This commit is contained in:
bakkeby
2020-08-04 13:40:26 +02:00
parent 12527f00d9
commit 3f4f88c142
2 changed files with 12 additions and 1 deletions

View File

@@ -116,7 +116,7 @@ hide(Client *c) {
} else {
n = nexttiled(c);
if (!n)
n = nexttiled(c->mon->clients);
n = prevtiled(c);
}
focus(n);
arrange(c->mon);
@@ -149,6 +149,16 @@ togglewin(const Arg *arg)
}
}
Client *
prevtiled(Client *c)
{
Client *p, *i;
for (p = NULL, i = c->mon->clients; c && i != c; i = i->next)
if (ISVISIBLE(i) && !HIDDEN(i))
p = i;
return p;
}
void
showhideclient(const Arg *arg)
{