From ab350b9b9f32ed14245e4d0378db37b82525ddab Mon Sep 17 00:00:00 2001 From: trivernis Date: Tue, 11 Apr 2023 12:49:37 +0200 Subject: [PATCH] Fix text overlapping in tree explorer --- helix-term/src/ui/tree.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/ui/tree.rs b/helix-term/src/ui/tree.rs index dc9a05d6..4ec70879 100644 --- a/helix-term/src/ui/tree.rs +++ b/helix-term/src/ui/tree.rs @@ -918,7 +918,7 @@ impl TreeView { line.content.clone(), area.width .saturating_sub(indent_len) - .saturating_sub(1) + .saturating_sub(3) .into(), if line.is_ancestor_of_current_item { ancestor_style