have the splash screen work again

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-05-27 18:03:30 -07:00
parent 83d5e2997b
commit e062d57a18
1 changed files with 2 additions and 2 deletions

View File

@ -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