Fix redraw

This commit is contained in:
Zachary Yedidia
2019-01-14 19:57:19 -05:00
parent b87346d44a
commit ebba9fb8ce
2 changed files with 1 additions and 3 deletions

View File

@@ -54,7 +54,7 @@ func TempStart(screenWasNil bool) {
// Init creates and initializes the tcell screen
func Init() {
DrawChan = make(chan bool)
DrawChan = make(chan bool, 8)
// Should we enable true color?
truecolor := os.Getenv("MICRO_TRUECOLOR") == "1"