summaryrefslogtreecommitdiff
path: root/addAccount.go
diff options
context:
space:
mode:
Diffstat (limited to 'addAccount.go')
-rw-r--r--addAccount.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/addAccount.go b/addAccount.go
index 1c61d22..e90e5be 100644
--- a/addAccount.go
+++ b/addAccount.go
@@ -9,12 +9,12 @@ func AddAccountQuestionBox(junk *ui.Box, custom func(int, string)) *ui.Box {
newbox := ui.NewVerticalBox()
newbox.SetPadded(true)
- newButton := CreateButton("Create New Account", "CLOSE", custom)
+ newButton := CreateButton("Create New Account", "DONE", custom)
newbox.Append(newButton, false)
newbox.Append(ui.NewHorizontalSeparator(), false)
- okButton := CreateButton("I Have an Account", "CLOSE", custom)
+ okButton := CreateButton("I Have an Account", "DONE", custom)
newbox.Append(okButton, false)
return newbox