This commit is contained in:
Quentin Snow 2021-04-16 12:41:30 -05:00
commit 08f03a4347

2
dwm.c
View File

@ -861,7 +861,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);