Clear with the default background, not black.
authorIain Patterson <me@iain.cx>
Thu, 5 Mar 2015 16:49:04 +0000 (16:49 +0000)
committerIain Patterson <me@iain.cx>
Thu, 5 Mar 2015 16:49:04 +0000 (16:49 +0000)
We were explicitly clearing the screen with white on black, ignoring the user's
terminal settings.

screen/screen.go

index 41aa4aa..251ca87 100644 (file)
@@ -33,7 +33,7 @@ func (s *TermboxScreen) BoldPrintAt(x int, y int, text string) {
 
 // clear the screen
 func (s *TermboxScreen) Clear() {
-       termbox.Clear(termbox.ColorWhite, termbox.ColorBlack)
+       termbox.Clear(termbox.ColorDefault, termbox.ColorDefault)
 }
 
 // close the screen