diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-08-30 15:46:56 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-08-30 15:46:56 +0400 |
commit | 196ab4dab889902a4114c67b115f8064cdac0cdc (patch) | |
tree | 4ecd8c75b4dbf4ee5c34df4d8cbfdb8f52b5d1e4 | |
parent | d432e1bf60bd1c1a3746354581c79c3df526b922 (diff) |
togglefocusfloat bug fix
-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; } |