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

good progress

This commit is contained in:
Jesse Duffield
2020-08-19 18:41:57 +10:00
parent a32947e7a7
commit 2f5d5034db
8 changed files with 98 additions and 28 deletions

View File

@ -86,9 +86,9 @@ func (gui *Gui) refreshSidePanels(options refreshOptions) error {
wg.Add(1)
func() {
if options.mode == ASYNC {
go gui.refreshStashEntries(gui.g)
go gui.refreshStashEntries()
} else {
gui.refreshStashEntries(gui.g)
gui.refreshStashEntries()
}
wg.Done()
}()