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

bump gocui

This commit is contained in:
Jesse Duffield
2023-02-18 10:28:09 +11:00
parent c517d1e0a2
commit 01bf7f21e6
98 changed files with 3665 additions and 1269 deletions

View File

@ -1021,7 +1021,7 @@ func (g *Gui) drawSubtitle(v *View, fgColor, bgColor Attribute) error {
return nil
}
start := v.x1 - 5 - len(v.Subtitle)
start := v.x1 - 5 - runewidth.StringWidth(v.Subtitle)
if start < v.x0 {
return nil
}
@ -1050,7 +1050,7 @@ func (g *Gui) drawListFooter(v *View, fgColor, bgColor Attribute) error {
return nil
}
start := v.x1 - 1 - len(message)
start := v.x1 - 1 - runewidth.StringWidth(message)
if start < v.x0 {
return nil
}