diff options
| author | Jeff Carr <[email protected]> | 2019-05-24 01:51:37 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-05-24 01:51:37 -0700 |
| commit | 9b29c265b26d1231cf9ddb7abf51e390197dabf1 (patch) | |
| tree | bf9465bc361dd5260f573c155bf29e7551f15902 /addAccount.go | |
| parent | 9949a02b3e0d953824568fc5085009243c92cc86 (diff) | |
more button debugging
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'addAccount.go')
| -rw-r--r-- | addAccount.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addAccount.go b/addAccount.go index e90e5be..8b9f395 100644 --- a/addAccount.go +++ b/addAccount.go @@ -5,7 +5,7 @@ import "log" import "github.com/andlabs/ui" import _ "github.com/andlabs/ui/winmanifest" -func AddAccountQuestionBox(junk *ui.Box, custom func(int, string)) *ui.Box { +func AddAccountQuestionBox(junk *ui.Box, custom func(*ButtonMap, string)) *ui.Box { newbox := ui.NewVerticalBox() newbox.SetPadded(true) @@ -20,7 +20,7 @@ func AddAccountQuestionBox(junk *ui.Box, custom func(int, string)) *ui.Box { return newbox } -func AddAccountBox(custom func(int, string)) *ui.Box { +func AddAccountBox(custom func(*ButtonMap, string)) *ui.Box { vbox := ui.NewVerticalBox() vbox.SetPadded(true) |
