1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-02 23:27:32 +02:00

switch focus back to files view after confirming commit message

This commit is contained in:
Jesse Duffield 2018-08-11 13:18:33 +10:00
parent 3b018e040f
commit 47bf649a69

View File

@ -15,6 +15,7 @@ func handleCommitConfirm(g *gocui.Gui, v *gocui.View) error {
}
refreshFiles(g)
g.SetViewOnBottom("commitMessage")
switchFocus(g, v, getFilesView(g))
return refreshCommits(g)
}