ui/gesture: rename Scroller.Update to Scroller.Scroll

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-06-22 17:36:57 +02:00
parent bebfd822d8
commit 4f94f1078a
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ func (l *List) Dragging() bool {
func (l *List) update() {
l.Distance = 0
d := l.scroll.Update(l.Config, l.Inputs, gesture.Axis(l.Axis))
d := l.scroll.Scroll(l.Config, l.Inputs, gesture.Axis(l.Axis))
if l.Invert {
d = -d
}