mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-30 03:23:08 +03:00
Support building and moving patches
WIP
This commit is contained in:
@ -368,13 +368,13 @@ func (gui *Gui) changeSelectedLine(line *int, total int, up bool) {
|
||||
return
|
||||
}
|
||||
|
||||
*line -= 1
|
||||
*line--
|
||||
} else {
|
||||
if *line == -1 || *line == total-1 {
|
||||
return
|
||||
}
|
||||
|
||||
*line += 1
|
||||
*line++
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user