1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +02:00

Don't bother setting view cursor pos for staging/stagingSecondary views

Now that the cursor highlight is never shown (see previous commit), there's no
reason to update the cursor position any more.
This commit is contained in:
stk 2023-02-15 21:19:46 +01:00
parent 6b81e6adca
commit 8cad8cda8f

View File

@ -100,12 +100,9 @@ func (self *PatchExplorerContext) focusSelection() {
bufferHeight := viewHeight - 1
_, origin := view.Origin()
selectedLineIdx := state.GetSelectedLineIdx()
newOrigin := state.CalculateOrigin(origin, bufferHeight)
_ = view.SetOriginY(newOrigin)
_ = view.SetCursor(0, selectedLineIdx-newOrigin)
}
func (self *PatchExplorerContext) GetContentToRender(isFocused bool) string {