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 f212b450a27bc3e20c604a6d2989d695ee89227d..83ffe2094f66273d25ce3807390f8ba6b131ec7c 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;