diff options
Diffstat (limited to 'app/getpasswd.go')
-rw-r--r-- | app/getpasswd.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/getpasswd.go b/app/getpasswd.go index 9a3dbf3b..8781bce7 100644 --- a/app/getpasswd.go +++ b/app/getpasswd.go @@ -7,6 +7,7 @@ import ( "git.sr.ht/~rjarry/aerc/config" "git.sr.ht/~rjarry/aerc/lib/ui" + "git.sr.ht/~rockorager/vaxis" ) type GetPasswd struct { @@ -44,7 +45,7 @@ func (gp *GetPasswd) Invalidate() { ui.Invalidate() } -func (gp *GetPasswd) Event(event tcell.Event) bool { +func (gp *GetPasswd) Event(event vaxis.Event) bool { switch event := event.(type) { case *tcell.EventKey: switch event.Key() { |