fullscreen is always selected

This commit is contained in:
Luke Smith
2019-12-16 14:08:40 -05:00
parent 0596a1bf3b
commit d726fa8612

2
dwm.c
View File

@@ -859,7 +859,7 @@ focusstack(const Arg *arg)
{ {
Client *c = NULL, *i; Client *c = NULL, *i;
if (!selmon->sel) if (!selmon->sel || selmon->sel->isfullscreen)
return; return;
if (arg->i > 0) { if (arg->i > 0) {
for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next); for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);