From bccdb5d4c5c3fd04ce7d55fe4465c5aeeb12e0f6 Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Sun, 10 May 2026 09:34:01 +0800 Subject: [PATCH] opt: swallow inherit global --- src/mango.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mango.c b/src/mango.c index 0585abb5..b86fe0ef 100644 --- a/src/mango.c +++ b/src/mango.c @@ -1178,6 +1178,7 @@ void swallow(Client *c, Client *w) { c->scroller_proportion = w->scroller_proportion; c->next_in_stack = w->next_in_stack; c->prev_in_stack = w->prev_in_stack; + c->isglobal = w->isglobal; if (w->next_in_stack) w->next_in_stack->prev_in_stack = c;