commit d726fa8612f8536e6bec5956b33d8af12689ae2b
parent 0596a1bf3bc7815035e8f8bbb5fe6d346eb2411b
Author: Luke Smith <luke@lukesmith.xyz>
Date: Mon, 16 Dec 2019 14:08:40 -0500
fullscreen is always selected
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dwm.c b/dwm.c
@@ -859,7 +859,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);