diff options
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -917,7 +917,7 @@ togglefocusfloat(const Arg *arg) c = nexttiled(selmon->clients); } else if (!selmon->sel->isfullscreen) { /* Prevent focus shifting in fullscreen */ for (c = selmon->clients; c; c = c->next) - if (c->isfloating) + if (c->isfloating && ISVISIBLE(c)) break; } |