summaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-12-16 14:08:40 -0500
committerLuke Smith <luke@lukesmith.xyz>2019-12-16 14:08:40 -0500
commitd726fa8612f8536e6bec5956b33d8af12689ae2b (patch)
tree366cc5baf9134c13497df8ebbf07dd9cfb4e496d /dwm.c
parent0596a1bf3bc7815035e8f8bbb5fe6d346eb2411b (diff)
fullscreen is always selected
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
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);