From 26f5e232364ef071c5e32621b097f8d303471803 Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Sun, 17 May 2026 09:56:05 +0800 Subject: [PATCH] opt: hide split border when client not tiling --- src/animation/client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/animation/client.h b/src/animation/client.h index aed97c1f..5a83a11e 100644 --- a/src/animation/client.h +++ b/src/animation/client.h @@ -358,7 +358,7 @@ void apply_split_border(Client *c, bool hit_no_border) { const Layout *layout = c->mon->pertag->ltidxs[c->mon->pertag->curtag]; - if (hit_no_border || layout->id != DWINDLE || + if (hit_no_border || !ISTILED(c) || layout->id != DWINDLE || !config.dwindle_manual_split) { if (c->splitindicator[0]->node.enabled) { wlr_scene_node_set_enabled(&c->splitindicator[0]->node, false);