Skip to content

Commit

Permalink
Overscroll fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ackava committed May 10, 2017
1 parent e74f402 commit c1d319b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hypercube/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 25
versionCode 1447
versionName "1.4.47"
versionCode 1448
versionName "1.4.48"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {


if(position == allItems.size() - 1){
if(lastVisiblePosition != position){
if(lastVisiblePosition < position){
lastVisiblePosition = position;
HyperCubeApplication.current.post(new Runnable() {
@Override
Expand Down

0 comments on commit c1d319b

Please sign in to comment.