From 787cfbd9a90a26072a8dd61a28eca11dd6e20c04 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Mon, 12 Feb 2024 06:26:16 -0600 Subject: 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 Acked-by: Robin Jarry --- main.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'main.go') 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) -- cgit