From be7d81d33748b01e1812d206241c46f8666d5236 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 ac5d201..2a825c4 100644 --- a/src/config/parse_config.h +++ b/src/config/parse_config.h @@ -2363,7 +2363,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; } }