fix: funny boolean inversion
This commit is contained in:
parent
a8097f1cdc
commit
00d168a78d
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue