summaryrefslogtreecommitdiffstats
path: root/src/tui/tcell.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/tui/tcell.go')
-rw-r--r--src/tui/tcell.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tui/tcell.go b/src/tui/tcell.go
index 3fd81323..4f80d069 100644
--- a/src/tui/tcell.go
+++ b/src/tui/tcell.go
@@ -15,6 +15,10 @@ import (
"github.com/mattn/go-runewidth"
)
+func HasFullscreenRenderer() bool {
+ return true
+}
+
func (p ColorPair) style() tcell.Style {
style := tcell.StyleDefault
return style.Foreground(tcell.Color(p.Fg())).Background(tcell.Color(p.Bg()))