From 3a6c1ea6bcedd00455eb4560d9816f9b1432577d Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Thu, 18 Jun 2026 14:54:50 +0800 Subject: [PATCH] opt: allow focustop get monocle hide client --- src/fetch/client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fetch/client.h b/src/fetch/client.h index 0195c05f..62bc14fe 100644 --- a/src/fetch/client.h +++ b/src/fetch/client.h @@ -314,7 +314,7 @@ Client *direction_select(const Arg *arg) { Client *focustop(Monitor *m) { Client *c = NULL; wl_list_for_each(c, &fstack, flink) { - if (c->iskilling || c->isunglobal || c->is_monocle_hide) + if (c->iskilling || c->isunglobal) continue; if (VISIBLEON(c, m)) return c;