1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

Fixed golangcibot surgestions

This commit is contained in:
mjarkk
2018-10-20 18:58:37 +02:00
parent 12425f0aa7
commit b72841ca0c
2 changed files with 34 additions and 11 deletions

View File

@ -274,7 +274,10 @@ func (gui *Gui) layout(g *gocui.Gui) error {
if err != gocui.ErrUnknownView {
return err
}
g.SetViewOnBottom("pushPassUname")
_, err := g.SetViewOnBottom("pushPassUname")
if err != nil {
return err
}
pushPassUnameView.Title = gui.Tr.SLocalize("PushUsername")
pushPassUnameView.FgColor = gocui.ColorWhite
pushPassUnameView.Editable = true