diff options
author | Tim Culverhouse <tim@timculverhouse.com> | 2022-10-06 11:46:41 -0500 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-10-07 10:51:53 +0200 |
commit | bb1249164d8de6d821dcf3293f5ff2650be95481 (patch) | |
tree | 8dd0194a877a226a976baeb253cb1fe9d77fa70e /lib/ui/textinput.go | |
parent | d847073bdf67a2fd8c8695dbacbe010bcbfd27c8 (diff) | |
download | aerc-bb1249164d8de6d821dcf3293f5ff2650be95481.tar.gz |
aerc: use single event loop
Combine tcell events with WorkerMessages to better synchronize state
with IO and UI. Remove Tick loop for rendering. Use events to trigger
renders.
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'lib/ui/textinput.go')
-rw-r--r-- | lib/ui/textinput.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ui/textinput.go b/lib/ui/textinput.go index ce8ccc55..d99871ce 100644 --- a/lib/ui/textinput.go +++ b/lib/ui/textinput.go @@ -314,6 +314,7 @@ func (ti *TextInput) showCompletions() { ti.completions, ti.prefix = ti.tabcomplete(ti.StringLeft()) ti.completeIndex = -1 ti.Invalidate() + QueueRedraw() } func (ti *TextInput) OnChange(onChange func(ti *TextInput)) { |