opt: dont set border for fullscreen window when reload config

This commit is contained in:
DreamMaoMao 2025-10-25 14:38:52 +08:00
parent 8708cb347f
commit 424adf8e11

View file

@ -2924,7 +2924,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;
}
}