Skip to content

Commit

Permalink
fix(PanResponder): Fixes bug when using in modal.
Browse files Browse the repository at this point in the history
  • Loading branch information
st0ffern committed Dec 13, 2016
1 parent 68557f8 commit 0e4d4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ImageCrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class ImageCrop extends Component {
onStartShouldSetPanResponderCapture: (evt, gestureState) => true,
onMoveShouldSetPanResponder: (evt, gestureState) => true,
onMoveShouldSetPanResponderCapture: (evt, gestureState) => true,
onPanResponderTerminationRequest: (evt, gestureState) => true,
onPanResponderTerminationRequest: (evt, gestureState) => false,
onShouldBlockNativeResponder: (evt, gestureState) => true,

onPanResponderGrant: (evt, gestureState) => {
Expand Down

0 comments on commit 0e4d4af

Please sign in to comment.