Fix draw ordering

This commit is contained in:
Zachary Yedidia
2016-07-11 19:10:29 -04:00
parent a15c6ede81
commit 7ae0310863

View File

@@ -178,11 +178,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()
}