Fix redrawing for splits

This commit is contained in:
Zachary Yedidia
2016-06-26 16:18:33 -04:00
parent 9b9ae89e59
commit 7e0286b621
3 changed files with 8 additions and 7 deletions

View File

@@ -174,11 +174,11 @@ func InitScreen() {
// RedrawAll redraws everything -- all the views and the messenger
func RedrawAll() {
messenger.Clear()
DisplayTabs()
messenger.Display()
for _, v := range tabs[curTab].views {
v.Display()
}
DisplayTabs()
messenger.Display()
screen.Show()
}