diff options
author | Tim Culverhouse <tim@timculverhouse.com> | 2024-02-12 06:26:15 -0600 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-02-12 13:48:42 +0100 |
commit | 63b9706441719b53b3504733c51c2387fce9019d (patch) | |
tree | d541ead04cfe5082631c7bfd6bd019128cc8cc0b /lib/ui/popover.go | |
parent | 4e26faf498b84b90ecd1af3bd6c6e1f2f3e44a6e (diff) | |
download | aerc-63b9706441719b53b3504733c51c2387fce9019d.tar.gz |
aerc: change event interfaces to vaxis events
Modify the function signature of Event and MouseEvent interfaces to
accept vaxis events. Note that because a vaxis event is an empty
interface, the implementations are not affected and the events are
delivered as they were before
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'lib/ui/popover.go')
-rw-r--r-- | lib/ui/popover.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ui/popover.go b/lib/ui/popover.go index 9cc491da..5a6d0542 100644 --- a/lib/ui/popover.go +++ b/lib/ui/popover.go @@ -1,6 +1,6 @@ package ui -import "github.com/gdamore/tcell/v2" +import "git.sr.ht/~rockorager/vaxis" type Popover struct { x, y, width, height int @@ -39,7 +39,7 @@ func (p *Popover) Draw(ctx *Context) { p.content.Draw(subcontext) } -func (p *Popover) Event(e tcell.Event) bool { +func (p *Popover) Event(e vaxis.Event) bool { if di, ok := p.content.(DrawableInteractive); ok { return di.Event(e) } |