mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2025-10-29 05:40:21 -04:00
fix: use smartgaps miss tagin animaiton in scroller layput
This commit is contained in:
parent
4b8d74668e
commit
f2eb995d56
1 changed files with 3 additions and 3 deletions
|
|
@ -96,9 +96,9 @@
|
|||
#define GEZERO(A) ((A) >= 0 ? (A) : 0)
|
||||
#define CLEANMASK(mask) (mask & ~WLR_MODIFIER_CAPS)
|
||||
#define INSIDEMON(A) \
|
||||
(A->geom.x > A->mon->m.x && A->geom.y > A->mon->m.y && \
|
||||
A->geom.x + A->geom.width < A->mon->m.x + A->mon->m.width && \
|
||||
A->geom.y + A->geom.height < A->mon->m.y + A->mon->m.height)
|
||||
(A->geom.x >= A->mon->m.x && A->geom.y >= A->mon->m.y && \
|
||||
A->geom.x + A->geom.width <= A->mon->m.x + A->mon->m.width && \
|
||||
A->geom.y + A->geom.height <= A->mon->m.y + A->mon->m.height)
|
||||
#define ISTILED(A) \
|
||||
(A && !(A)->isfloating && !(A)->isminied && !(A)->iskilling && \
|
||||
!(A)->ismaxmizescreen && !(A)->isfullscreen)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue