From 6ad1409c337d314f5d335957771b35ef6a18dcac Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Tue, 9 Feb 2021 22:01:47 +1100 Subject: [PATCH] use true output mode --- pkg/gui/gui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/gui/gui.go b/pkg/gui/gui.go index 3f310b544..b44994c32 100644 --- a/pkg/gui/gui.go +++ b/pkg/gui/gui.go @@ -416,7 +416,7 @@ func (gui *Gui) Run() error { recordEvents := recordingEvents() - g, err := gocui.NewGui(gocui.Output256, OverlappingEdges, recordEvents) + g, err := gocui.NewGui(gocui.OutputTrue, OverlappingEdges, recordEvents) if err != nil { return err }