fix: miss focus in some popup window

This commit is contained in:
DreamMaoMao 2025-05-19 12:55:18 +08:00
parent 50020fb57e
commit fd6ca73907

View file

@ -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;