diff options
| author | Jeff Carr <[email protected]> | 2019-05-27 18:03:30 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-05-27 18:03:30 -0700 |
| commit | d886922680ff0661aa0c81087ffe399a93beda2e (patch) | |
| tree | e782498d04987cab176ee2d8bc6c30c8907008e3 | |
| parent | 6b2131850817a78c57d7975bccf5fdf829dfb7e6 (diff) | |
have the splash screen work again
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | addAccount.go | 4 |
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 |
