From 2ad2d205c5d1863a4c119139d18bf4a6378d60b4 Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Sat, 17 Jan 2026 15:38:23 +0800 Subject: [PATCH] fix: not allow scroller stack in multi tag --- src/layout/arrange.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/layout/arrange.h b/src/layout/arrange.h index 13141d9..072993d 100644 --- a/src/layout/arrange.h +++ b/src/layout/arrange.h @@ -605,6 +605,10 @@ arrange(Monitor *m, bool want_animation, bool from_view) { wl_list_for_each(c, &clients, link) { + if (!client_only_in_one_tag(c) || c->isglobal || c->isunglobal) { + exit_scroller_stack(c); + } + if (from_view && (c->isglobal || c->isunglobal)) { set_size_per(m, c); }