Skip to content

Commit

Permalink
Don't send null listener when scheduling item update
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsawicki committed Sep 11, 2012
1 parent 6ad86eb commit a6decb9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -143,7 +143,7 @@ private void configurePager() {
indicator.setViewPager(pager);

if (initialPosition < adapter.getCount()) {
pager.scheduleSetItem(initialPosition, null);
pager.scheduleSetItem(initialPosition);
onPageSelected(initialPosition);
}
}
Expand Down

0 comments on commit a6decb9

Please sign in to comment.