Small fix to redraw location

This commit is contained in:
Zachary Yedidia 2016-08-21 11:31:26 -07:00
parent 8f51fe84ae
commit ca4be706ac

View file

@ -289,8 +289,6 @@ func main() {
}()
for {
// Display everything
RedrawAll()
var event tcell.Event
@ -343,5 +341,8 @@ func main() {
// Send it to the view
CurView().HandleEvent(event)
}
// Display everything
RedrawAll()
}
}