Skip to content

Commit

Permalink
fixed #4
Browse files Browse the repository at this point in the history
  • Loading branch information
emilsjolander committed Mar 31, 2013
1 parent 61fb88c commit 83d3ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/se/emilsjolander/flipview/FlipView.java
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public boolean onInterceptTouchEvent(MotionEvent ev) {
mLastX = MotionEventCompat.getX(ev, mActivePointerId);
mLastY = MotionEventCompat.getY(ev, mActivePointerId);

mIsFlipping = !mScroller.isFinished();
mIsFlipping = !mScroller.isFinished() | mPeakAnim != null;
mIsUnableToFlip = false;
mLastTouchAllowed = true;

Expand Down

0 comments on commit 83d3ae8

Please sign in to comment.