apply upstream fixes

This commit is contained in:
yugecin
2017-01-29 22:55:11 +01:00
parent 1745ae73a1
commit c00b2b877a
4 changed files with 16 additions and 19 deletions

View File

@@ -115,7 +115,8 @@ public class KineticScrolling {
amplitude = 0;
target = position = max;
}
} else if (position < min) {
}
if (position < min) {
if (allowOverScroll) {
scrollToPosition(min);
} else {