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:
2
vendor/github.com/jesseduffield/gocui/view.go
generated
vendored
2
vendor/github.com/jesseduffield/gocui/view.go
generated
vendored
@ -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
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user