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.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/tui/tcell.go b/src/tui/tcell.go
index 0ca8aee7..bc6e13ee 100644
--- a/src/tui/tcell.go
+++ b/src/tui/tcell.go
@@ -565,11 +565,6 @@ func (w *TcellWindow) Erase() {
w.drawBorder(false)
}
-func (w *TcellWindow) EraseMaybe() bool {
- w.Erase()
- return true
-}
-
func (w *TcellWindow) Enclose(y int, x int) bool {
return x >= w.left && x < (w.left+w.width) &&
y >= w.top && y < (w.top+w.height)