Disable mouse if failed to query cursor position

This commit is contained in:
Junegunn Choi 2017-01-23 12:15:31 +09:00
parent e1291aa6d2
commit 12a43b5e62
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

View File

@ -191,7 +191,8 @@ func (r *LightRenderer) Init() {
if r.fullscreen {
r.smcup()
} else {
_, x := r.findOffset()
y, x := r.findOffset()
r.mouse = r.mouse && y >= 0
if x > 0 {
r.upOneLine = true
r.makeSpace()