From d726fa8612f8536e6bec5956b33d8af12689ae2b Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 16 Dec 2019 14:08:40 -0500 Subject: [PATCH] fullscreen is always selected --- dwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwm.c b/dwm.c index 60e98e6..e9ce944 100644 --- 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);