X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/61bb8b2241d4db08bea4261c82e27cd9797099e7..138b405f0c8aa24d8a040cc1a1cf6e3eb5a0ebc7:/dwm.c?ds=sidebyside diff --git a/dwm.c b/dwm.c index 664c527..5e4d494 100644 --- a/dwm.c +++ b/dwm.c @@ -835,7 +835,7 @@ focusstack(const Arg *arg) { Client *c = NULL, *i; - if (!selmon->sel) + if (!selmon->sel || (selmon->sel->isfullscreen && lockfullscreen)) return; if (arg->i > 0) { for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);