commit a6c056d7df3abbb31e91d0e04af4a0e80941a44c
parent 0dd5dea7f6da5e0bc9fdd4ab2e9ffdb2c1e21ae0
Author: Harridrone <harrison_k_a@hotmail.com>
Date: Sun, 27 Jun 2021 07:21:33 -0400
Merge branch 'master' of https://git.suckless.org/dwm
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dwm.c b/dwm.c
@@ -835,7 +835,7 @@ focusstack(const Arg *arg)
{
Client *c = NULL, *i;
- if (!selmon->sel)
+ if (!selmon->sel || selmon->sel->isfullscreen)
return;
if (arg->i > 0) {
for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);