summaryrefslogtreecommitdiffstats
path: root/termui
diff options
context:
space:
mode:
authorCaleb Bassi <calebjbassi@gmail.com>2018-02-21 03:33:23 -0800
committerCaleb Bassi <calebjbassi@gmail.com>2018-02-21 03:33:23 -0800
commit4d7726d0498cf612970b00fe64faf1e6e9c7fd72 (patch)
tree7aad6c653ae6aaec2a121b896b0eb47a0c8d2b5e /termui
parentac218f66eefb3338acd0c04f4a994bf4a4ee9725 (diff)
Forgot to increment colors to Clear() also
Diffstat (limited to 'termui')
-rw-r--r--termui/render.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/termui/render.go b/termui/render.go
index 989d849..92a277a 100644
--- a/termui/render.go
+++ b/termui/render.go
@@ -43,5 +43,5 @@ func Render(bs ...Bufferer) {
}
func Clear() {
- tb.Clear(tb.ColorDefault, tb.Attribute(Theme.Bg))
+ tb.Clear(tb.ColorDefault+1, tb.Attribute(Theme.Bg)+1)
}