From 47df98662a0675b9932ac9ff585e6533de5e2d69 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 f212b45..83ffe20 100644 --- a/dwl.c +++ b/dwl.c @@ -1408,7 +1408,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