fix: funny boolean inversion

pull/13133/head
Nik Revenco 2025-03-25 21:14:02 +00:00
parent a8097f1cdc
commit 00d168a78d
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ impl Decoration for InlineBlame {
) -> Position { ) -> Position {
let blame = match &self.lines { let blame = match &self.lines {
LineBlame::OneLine((line, blame)) => { 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 // do not draw inline blame for lines that have no content in them
blame blame
} else { } else {