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, 2 insertions, 2 deletions
diff --git a/src/tui/tcell.go b/src/tui/tcell.go
index ae3cb2e9..0ca8aee7 100644
--- a/src/tui/tcell.go
+++ b/src/tui/tcell.go
@@ -544,7 +544,7 @@ func (r *FullscreenRenderer) NewWindow(top int, left int, width int, height int,
height: height,
normal: normal,
borderStyle: borderStyle}
- w.drawBorder(false)
+ w.Erase()
return w
}
@@ -561,8 +561,8 @@ func fill(x, y, w, h int, n ColorPair, r rune) {
}
func (w *TcellWindow) Erase() {
- w.drawBorder(false)
fill(w.left-1, w.top, w.width+1, w.height-1, w.normal, ' ')
+ w.drawBorder(false)
}
func (w *TcellWindow) EraseMaybe() bool {