Skip to content

Commit

Permalink
fix: make header align with list
Browse files Browse the repository at this point in the history
  • Loading branch information
phanen committed Jan 4, 2025
1 parent 8e4d338 commit 5492471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/terminal.go
Original file line number Diff line number Diff line change
Expand Up @@ -2299,7 +2299,7 @@ func (t *Terminal) printHeader() {

t.printHighlighted(Result{item: item},
tui.ColHeader, tui.ColHeader, false, false, line, line, true,
func(markerClass) { t.window.Print(" ") }, nil)
func(markerClass) { t.window.Print(strings.Repeat(" ", t.pointerLen+t.markerLen)) }, nil)
}
t.wrap = wrap
}
Expand Down

0 comments on commit 5492471

Please sign in to comment.