Skip to content

Commit

Permalink
fix no response bug
Browse files Browse the repository at this point in the history
  • Loading branch information
daimajia committed Sep 11, 2014
1 parent 715756c commit f6cd43e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions library/src/main/java/com/daimajia/swipe/SwipeLayout.java
Original file line number Diff line number Diff line change
Expand Up @@ -651,9 +651,8 @@ public boolean onInterceptTouchEvent(MotionEvent ev) {
mTouchConsumedByChild = childNeedHandleTouchEvent(getSurfaceView(), ev) != null;
}else if(status == Status.Open){
mTouchConsumedByChild = childNeedHandleTouchEvent(getBottomView(), ev) != null;
}else{
break;
}
break;
case MotionEvent.ACTION_UP:
case MotionEvent.ACTION_CANCEL:
mTouchConsumedByChild = false;
Expand Down

0 comments on commit f6cd43e

Please sign in to comment.