summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-01-16 12:06:54 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-01-16 12:27:32 +0900
commit8e2e63f9b9e7fb2a9f4c58ebc18c5d8a0b4924fe (patch)
treed6305ca90ebb03822df50071ef41f879a5978943
parentf96173cbe4129124e6cbf66804e06dbabc9066c3 (diff)
Propertly fill window with background color
Close #805
-rw-r--r--src/terminal.go5
-rw-r--r--src/tui/tui.go4
2 files changed, 9 insertions, 0 deletions
diff --git a/src/terminal.go b/src/terminal.go
index 4d207b48..2378984d 100644
--- a/src/terminal.go
+++ b/src/terminal.go
@@ -558,6 +558,11 @@ func (t *Terminal) resizeWindows() {
width,
height, false)
}
+ if !t.tui.IsOptimized() && t.theme != nil && t.theme.HasBg() {
+ for i := 0; i < t.window.Height(); i++ {
+ t.window.MoveAndClear(i, 0)
+ }
+ }
}
func (t *Terminal) move(y int, x int, clear bool) {
diff --git a/src/tui/tui.go b/src/tui/tui.go
index fd4a21e3..c8bd5fbc 100644
--- a/src/tui/tui.go
+++ b/src/tui/tui.go
@@ -175,6 +175,10 @@ type ColorTheme struct {
Border Color
}
+func (t *ColorTheme) HasBg() bool {
+ return t.Bg != colDefault
+}
+
type Event struct {
Type int
Char rune