diff --git a/src/SortableContainer/index.js b/src/SortableContainer/index.js index 5c050260a..b130a15bb 100644 --- a/src/SortableContainer/index.js +++ b/src/SortableContainer/index.js @@ -126,7 +126,11 @@ export default function SortableContainer(WrappedComponent, config = {withRef: f this.manager.active = {index, collection}; if (!distance) { - this.pressTimer = setTimeout(() => this.handlePress(e), this.props.pressDelay); + if (this.props.pressDelay === 0) { + this.handlePress(e); + } else { + this.pressTimer = setTimeout(() => this.handlePress(e), this.props.pressDelay); + } } } };