From 00d168a78d4e6756101d352124f8f6e1f9b2db50 Mon Sep 17 00:00:00 2001 From: Nik Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Tue, 25 Mar 2025 21:14:02 +0000 Subject: [PATCH] fix: funny boolean inversion --- helix-term/src/ui/text_decorations/blame.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/ui/text_decorations/blame.rs b/helix-term/src/ui/text_decorations/blame.rs index 9b996f6df..ada2b261f 100644 --- a/helix-term/src/ui/text_decorations/blame.rs +++ b/helix-term/src/ui/text_decorations/blame.rs @@ -37,7 +37,7 @@ impl Decoration for InlineBlame { ) -> Position { let blame = match &self.lines { LineBlame::OneLine((line, blame)) => { - if line != &pos.doc_line { + if line == &pos.doc_line { // do not draw inline blame for lines that have no content in them blame } else {