From a34cde4e76ea1368a72a71bf5ffd99bc0faf7f8b Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Sat, 14 Jun 2025 12:12:36 +0800 Subject: [PATCH] fix: bw will reset by a wrong way --- 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 5860fe9..25c5db8 100644 --- a/src/config/parse_config.h +++ b/src/config/parse_config.h @@ -2244,7 +2244,7 @@ void reload_config(const Arg *arg) { // reset border width when config change wl_list_for_each(c, &clients, link) { if (c && !c->iskilling) { - if (c->bw) { + if (c->bw && !c->isnoborder) { c->bw = borderpx; } }