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

Merge pull request #2221 from Ryooooooga/commit-message-prompt

This commit is contained in:
Jesse Duffield
2022-10-15 10:00:14 -07:00
committed by GitHub

View File

@ -89,6 +89,7 @@ func (gui *Gui) getSetTextareaTextFn(getView func() *gocui.View) func(string) {
view := getView() view := getView()
view.ClearTextArea() view.ClearTextArea()
view.TextArea.TypeString(text) view.TextArea.TypeString(text)
_ = gui.resizePopupPanel(view, view.TextArea.GetContent())
view.RenderTextArea() view.RenderTextArea()
} }
} }