From b33befdfe92d7ef4f52361c85910a4a7b66f24ba Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sun, 12 May 2024 10:43:47 +0200 Subject: [PATCH] hotfix: do not lose focus on tags moving between monitors --- dwl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwl.c b/dwl.c index b9da039..a6b4ef0 100644 --- a/dwl.c +++ b/dwl.c @@ -1887,7 +1887,7 @@ focustop(Monitor *m) { Client *c; wl_list_for_each(c, &fstack, flink) { - if (VISIBLEON(c, m)) + if (SVISIBLEON(c, m)) return c; } return NULL; -- 2.48.1