Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zhxnlai committed May 25, 2015
1 parent e5b3eae commit 6f84365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ZLSwipeableView/ZLSwipeableView.m
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ - (void)swipeTopViewToDirection:(ZLSwipeableViewDirection)direction {
directionVector = CGVectorMake(-self.pushVelocityMagnitude, 0);
break;
case ZLSwipeableViewDirectionRight:
directionVector = CGVectorMake(-self.pushVelocityMagnitude, 0);
directionVector = CGVectorMake(self.pushVelocityMagnitude, 0);
break;
case ZLSwipeableViewDirectionUp:
directionVector = CGVectorMake(0, -self.pushVelocityMagnitude);
Expand Down

0 comments on commit 6f84365

Please sign in to comment.