fixes #104 Screen.ShowCursor() does not display cursor

This commit is contained in:
Garrett D'Amore 2016-05-18 19:57:23 -07:00
parent f722733809
commit a04d3e916b
1 changed files with 1 additions and 3 deletions

View File

@ -580,9 +580,7 @@ func (t *tScreen) showCursor() {
t.hideCursor()
return
}
if t.cx != x || t.cy != y {
t.TPuts(t.ti.TGoto(x, y))
}
t.TPuts(t.ti.TGoto(x, y))
t.TPuts(t.ti.ShowCursor)
t.cx = x
t.cy = y