summaryrefslogtreecommitdiffstats
path: root/pkg/gui/quitting.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/quitting.go')
-rw-r--r--pkg/gui/quitting.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/quitting.go b/pkg/gui/quitting.go
index edf402159..4db28dcb1 100644
--- a/pkg/gui/quitting.go
+++ b/pkg/gui/quitting.go
@@ -4,7 +4,7 @@ import (
"os"
"github.com/jesseduffield/gocui"
- "github.com/jesseduffield/lazygit/pkg/gui/popup"
+ "github.com/jesseduffield/lazygit/pkg/gui/types"
)
// when a user runs lazygit with the LAZYGIT_NEW_DIR_FILE env variable defined
@@ -73,7 +73,7 @@ func (gui *Gui) quit() error {
}
if gui.c.UserConfig.ConfirmOnQuit {
- return gui.c.Ask(popup.AskOpts{
+ return gui.c.Ask(types.AskOpts{
Title: "",
Prompt: gui.c.Tr.ConfirmQuit,
HandleConfirm: func() error {