summaryrefslogtreecommitdiffstats
path: root/pkg/gui/credentials_panel.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-08-23 13:16:44 +1000
committerJesse Duffield <jessedduffield@gmail.com>2020-08-23 14:29:18 +1000
commit1189c2fab7b499aa4cbf2901b8dbcbd6f4f9aaad (patch)
tree7d167487bc6fbeb6914ca4f118de012de47d6eee /pkg/gui/credentials_panel.go
parent3eb3de3edcb882a12a888b3ec52f3f7848f9bbd9 (diff)
we've now flipped the boolean
Diffstat (limited to 'pkg/gui/credentials_panel.go')
-rw-r--r--pkg/gui/credentials_panel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/credentials_panel.go b/pkg/gui/credentials_panel.go
index a5905da02..903f72a1c 100644
--- a/pkg/gui/credentials_panel.go
+++ b/pkg/gui/credentials_panel.go
@@ -72,6 +72,6 @@ func (gui *Gui) handleCredentialsPopup(cmdErr error) {
// we are not logging this error because it may contain a password
gui.createErrorPanel(errMessage)
} else {
- _ = gui.closeConfirmationPrompt(true)
+ _ = gui.closeConfirmationPrompt(false)
}
}