TextView.ScrollTo() will turn off end-tracking. Fixes #274

This commit is contained in:
Oliver 2019-05-14 17:07:36 +02:00
parent f16ba37c6a
commit 3c477cc248
1 changed files with 1 additions and 0 deletions

View File

@ -329,6 +329,7 @@ func (t *TextView) ScrollTo(row, column int) *TextView {
}
t.lineOffset = row
t.columnOffset = column
t.trackEnd = false
return t
}