fullscreen is always selected
This commit is contained in:
parent
0596a1bf3b
commit
d726fa8612
1 changed files with 1 additions and 1 deletions
2
dwm.c
2
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);
|
||||
|
|
Loading…
Reference in a new issue