aboutsummaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
authorTim Culverhouse <tim@timculverhouse.com>2024-02-12 06:26:16 -0600
committerRobin Jarry <robin@jarry.cc>2024-02-12 13:48:44 +0100
commit787cfbd9a90a26072a8dd61a28eca11dd6e20c04 (patch)
treeb64f887898c810e3de9a9b4dd9c2bc0317cf7902 /main.go
parent63b9706441719b53b3504733c51c2387fce9019d (diff)
downloadaerc-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.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/main.go b/main.go
index 8f5ec2f9..fe8a8333 100644
--- a/main.go
+++ b/main.go
@@ -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)