Fix double-click result when scroll offset is positive

This commit is contained in:
Junegunn Choi
2015-04-21 23:23:39 +09:00
parent a88bf87e2a
commit 9f64a00549

View File

@@ -697,7 +697,7 @@ func (t *Terminal) Loop() {
} else if me.Double { } else if me.Double {
// Double-click // Double-click
if my >= 2 { if my >= 2 {
if t.vset(my-2) && t.cy < t.merger.Length() { if t.vset(t.offset+my-2) && t.cy < t.merger.Length() {
req(reqClose) req(reqClose)
} }
} }