diff options
author | Tim Culverhouse <tim@timculverhouse.com> | 2024-02-12 06:26:21 -0600 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-02-12 13:48:51 +0100 |
commit | 345962e33ccbd18fd672f63684d8248e1211a656 (patch) | |
tree | e2c18d138aa47161ff4d24e806173015bc42d749 /lib/ui/ui.go | |
parent | a60f2c19a0a962167067547c2a74988012cf2f44 (diff) | |
download | aerc-345962e33ccbd18fd672f63684d8248e1211a656.tar.gz |
terminal: replace tcell-term with vaxis terminal
Replace tcell terminal with the vaxis terminal. The vaxis terminal is a
port of tcell term.
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'lib/ui/ui.go')
-rw-r--r-- | lib/ui/ui.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ui/ui.go b/lib/ui/ui.go index 84c34459..a7233f49 100644 --- a/lib/ui/ui.go +++ b/lib/ui/ui.go @@ -125,6 +125,7 @@ func Render() { state.vx.Window().Clear() // reset popover for the next Draw state.popover = nil + state.vx.HideCursor() state.content.Draw(state.ctx) if state.popover != nil { // if the Draw resulted in a popover, draw it |