diff options
author | Tim Culverhouse <tim@timculverhouse.com> | 2024-02-12 06:26:16 -0600 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-02-12 13:48:44 +0100 |
commit | 787cfbd9a90a26072a8dd61a28eca11dd6e20c04 (patch) | |
tree | b64f887898c810e3de9a9b4dd9c2bc0317cf7902 /main.go | |
parent | 63b9706441719b53b3504733c51c2387fce9019d (diff) | |
download | aerc-787cfbd9a90a26072a8dd61a28eca11dd6e20c04.tar.gz |
ui: remove screen and viewports
Remove references to tcell.Screen or views.Viewports. Convert Contexts
and the core UI struct to use Vaxis objects only.
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -223,9 +223,6 @@ func main() { } close(deferLoop) - if config.Ui.MouseEnabled { - ui.EnableMouse() - } startup, startupDone := context.WithCancel(context.Background()) as, err := ipc.StartServer(app.IPCHandler(), startup) |