Skip to content

Commit

Permalink
Maybe fixed the issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Simko committed Dec 16, 2013
1 parent bed0658 commit c2c5ac8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/ECSlidingViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,10 @@ - (ECSlidingViewControllerOperation)operationFromPosition:(ECSlidingViewControll
}

- (void)animateOperation:(ECSlidingViewControllerOperation)operation {
if (![self operationIsValid:operation]) return;
if (![self operationIsValid:operation]){
_isInteractive = NO;
return;
}
if (self.transitionInProgress) return;

self.transitionInProgress = YES;
Expand Down

0 comments on commit c2c5ac8

Please sign in to comment.