diff options
Diffstat (limited to 'commands/patch/list.go')
-rw-r--r-- | commands/patch/list.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/patch/list.go b/commands/patch/list.go index ee2850c3..e73cea3a 100644 --- a/commands/patch/list.go +++ b/commands/patch/list.go @@ -14,7 +14,7 @@ import ( "git.sr.ht/~rjarry/aerc/lib/pama/models" "git.sr.ht/~rjarry/aerc/lib/ui" "git.sr.ht/~rjarry/go-opt" - "github.com/gdamore/tcell/v2" + "git.sr.ht/~rockorager/vaxis" ) type List struct { @@ -70,7 +70,7 @@ func (l List) Execute(args []string) error { app.CloseDialog() return } - term.OnEvent = func(_ tcell.Event) bool { + term.OnEvent = func(_ vaxis.Event) bool { app.CloseDialog() return true } |