diff options
Diffstat (limited to 'app/account-wizard.go')
-rw-r--r-- | app/account-wizard.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/account-wizard.go b/app/account-wizard.go index 9ee69627..e47acc53 100644 --- a/app/account-wizard.go +++ b/app/account-wizard.go @@ -22,6 +22,7 @@ import ( "git.sr.ht/~rjarry/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/lib/xdg" "git.sr.ht/~rjarry/aerc/log" + "git.sr.ht/~rockorager/vaxis" ) const ( @@ -747,7 +748,7 @@ func (wizard *AccountWizard) Focus(focus bool) { } } -func (wizard *AccountWizard) Event(event tcell.Event) bool { +func (wizard *AccountWizard) Event(event vaxis.Event) bool { interactive := wizard.getInteractive() if event, ok := event.(*tcell.EventKey); ok { switch event.Key() { |