From a2ee93cc3457713cac1bd42f52a359e95744c86a Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Wed, 10 Sep 2025 09:26:36 +0800 Subject: [PATCH] fix: ISTILED marco only judge tile state --- src/mango.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mango.c b/src/mango.c index 4e1fffd..f0d28e6 100644 --- a/src/mango.c +++ b/src/mango.c @@ -101,8 +101,7 @@ A->geom.y + A->geom.height < A->mon->m.y + A->mon->m.height) #define ISTILED(A) \ (A && !(A)->isfloating && !(A)->isminied && !(A)->iskilling && \ - !client_should_ignore_focus(A) && !(A)->isunglobal && \ - !(A)->animation.tagouting && !(A)->ismaxmizescreen && !(A)->isfullscreen) + !(A)->ismaxmizescreen && !(A)->isfullscreen) #define VISIBLEON(C, M) \ ((M) && (C)->mon == (M) && ((C)->tags & (M)->tagset[(M)->seltags])) #define LENGTH(X) (sizeof X / sizeof X[0])