From c20a4139a10a507084e90f34dbaae71fad9e015b Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Sat, 25 Oct 2025 14:38:52 +0800 Subject: [PATCH] opt: dont set border for fullscreen window when reload config --- src/config/parse_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/parse_config.h b/src/config/parse_config.h index 7ddd00f..9f63d10 100644 --- a/src/config/parse_config.h +++ b/src/config/parse_config.h @@ -3055,7 +3055,7 @@ void reapply_border(void) { // reset border width when config change wl_list_for_each(c, &clients, link) { if (c && !c->iskilling) { - if (!c->isnoborder) { + if (!c->isnoborder && !c->isfullscreen) { c->bw = borderpx; } }