summaryrefslogtreecommitdiff
path: root/addAccount.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-05-27 18:03:30 -0700
committerJeff Carr <[email protected]>2019-05-27 18:03:30 -0700
commitd886922680ff0661aa0c81087ffe399a93beda2e (patch)
treee782498d04987cab176ee2d8bc6c30c8907008e3 /addAccount.go
parent6b2131850817a78c57d7975bccf5fdf829dfb7e6 (diff)
have the splash screen work again
Signed-off-by: Jeff Carr <[email protected]>
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 61b5871..1e5f521 100644
--- a/addAccount.go
+++ b/addAccount.go
@@ -9,12 +9,12 @@ func AddAccountQuestionBox() *ui.Box {
newbox := ui.NewVerticalBox()
newbox.SetPadded(true)
- newButton := CreateButton(nil, nil, "Create New Account", "DONE", nil)
+ newButton := CreateButton(nil, nil, "Create New Account", "AREA", nil)
newbox.Append(newButton, false)
newbox.Append(ui.NewHorizontalSeparator(), false)
- okButton := CreateButton(nil, nil, "I Have an Account", "DONE", nil)
+ okButton := CreateButton(nil, nil, "I Have an Account", "AREA", nil)
newbox.Append(okButton, false)
return newbox