mirror of https://github.com/helix-editor/helix
fix: funny boolean inversion
parent
a8097f1cdc
commit
00d168a78d
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue