1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-09 13:47:11 +02:00
This commit is contained in:
Jesse Duffield 2021-04-02 11:02:45 +11:00
parent b6d0bdfa2d
commit 8b7f7cbc30

View File

@ -310,7 +310,9 @@ func (app *App) layout(g *gocui.Gui) error {
return err
}
}
listView.SetCursor(0, app.itemIdx)
if err := listView.SetCursor(0, app.itemIdx); err != nil {
return err
}
descriptionView, err := g.SetViewBeneath("description", "list", descriptionViewHeight)
if err != nil {