1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-04 22:34:39 +02:00

explicitly tell gocui when to start animating the loader

This commit is contained in:
Jesse Duffield 2020-02-01 00:06:07 +11:00
parent cf6be928a3
commit 434582b5f5

View File

@ -75,6 +75,9 @@ func (gui *Gui) prepareConfirmationPanel(currentView *gocui.View, title, prompt
return nil, err return nil, err
} }
confirmationView.HasLoader = hasLoader confirmationView.HasLoader = hasLoader
if hasLoader {
gui.g.StartTicking()
}
confirmationView.Title = title confirmationView.Title = title
confirmationView.Wrap = true confirmationView.Wrap = true
confirmationView.FgColor = theme.GocuiDefaultTextColor confirmationView.FgColor = theme.GocuiDefaultTextColor