Skip to content

Commit

Permalink
Fix pages overlapping in Stack transition effect.
Browse files Browse the repository at this point in the history
  • Loading branch information
makovkastar committed May 14, 2013
1 parent 5170c98 commit fdb4c01
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/src/com/jfeinstein/jazzyviewpager/JazzyViewPager.java
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,9 @@ protected void animateStack(View left, View right, float positionOffset, int pos
ViewHelper.setScaleY(right, mScale);
ViewHelper.setTranslationX(right, mTrans);
}
if (left != null) {
left.bringToFront();
}
}
}

Expand Down

0 comments on commit fdb4c01

Please sign in to comment.