From fd6ca739072c410e3dc314b34d7128379c6c57fc Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Mon, 19 May 2025 12:55:18 +0800 Subject: [PATCH] fix: miss focus in some popup window --- src/maomao.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/maomao.c b/src/maomao.c index 40d166e..9543582 100644 --- a/src/maomao.c +++ b/src/maomao.c @@ -3963,7 +3963,7 @@ Client * // 0.5 focustop(Monitor *m) { Client *c; wl_list_for_each(c, &fstack, flink) { - if (c->iskilling || client_should_ignore_focus(c)) + if (c->iskilling) continue; if (VISIBLEON(c, m)) return c;