commit d6e26ed1e3003b4a0add07a49b0c0ef2561078c4
parent a66306574e53f4f83cfeb833dccbe64e25f8e78a
Author: hhvn <dev@hhvn.uk>
Date: Thu, 17 Jun 2021 15:34:15 +0100
dwm.c: apply mailing list patch from ages ago
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dwm.c b/dwm.c
@@ -985,7 +985,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);