1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-05 00:59:19 +02:00

bump gocui to prevent truncating the contents of wrapped views

This commit is contained in:
Jesse Duffield
2019-01-15 19:49:34 +11:00
parent e50bd812fc
commit c759c7ac65
3 changed files with 4 additions and 4 deletions

View File

@ -539,7 +539,7 @@ func lineWrap(line []cell, columns int) [][]cell {
n += rw
if n > columns {
n = rw
lines = append(lines, line[offset:i-1])
lines = append(lines, line[offset:i])
offset = i
}
}