1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-11-29 22:48:24 +02:00

fix bug which prevented quitting with confirm

This commit is contained in:
Jesse Duffield
2022-01-15 20:30:34 +11:00
parent 7a690f9078
commit befa35645e
19 changed files with 47 additions and 0 deletions

View File

@@ -327,5 +327,9 @@ func (gui *Gui) surfaceError(err error) error {
return nil
}
if err == gocui.ErrQuit {
return err
}
return gui.createErrorPanel(err.Error())
}