mirror of https://github.com/gdamore/tcell.git
fixes #104 Screen.ShowCursor() does not display cursor
This commit is contained in:
parent
f722733809
commit
a04d3e916b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue