From 614b00eaed2b83fba021ddf6419e52d16d1a412b Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Wed, 8 Oct 2025 20:13:04 +0800 Subject: [PATCH] fix: some client miss set borderpx 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 4fe7ea0..741bcde 100644 --- a/src/config/parse_config.h +++ b/src/config/parse_config.h @@ -2941,7 +2941,7 @@ void reapply_border(void) { // reset border width when config change wl_list_for_each(c, &clients, link) { if (c && !c->iskilling) { - if (c->bw && !c->isnoborder) { + if (!c->isnoborder) { c->bw = borderpx; } }