Skip to content

Commit

Permalink
Merge pull request #86 from davejohncole/master
Browse files Browse the repository at this point in the history
Fix the adapter index to getItemId() to include the mFirstPosition offse...
  • Loading branch information
denizmveli committed May 24, 2014
2 parents 6d2d653 + ba66741 commit 95146e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2744,7 +2744,7 @@ public void run() {
final View view = getChildAt(motionPosition); // a fix by @pboos

if (view != null) {
performItemClick(view, motionPosition + mFirstPosition, adapter.getItemId(motionPosition));
performItemClick(view, motionPosition + mFirstPosition, adapter.getItemId(motionPosition + mFirstPosition));
}
}
}
Expand Down

0 comments on commit 95146e4

Please sign in to comment.