diff --git a/src/SortableContainer/index.js b/src/SortableContainer/index.js index fca096177..026cbfa37 100644 --- a/src/SortableContainer/index.js +++ b/src/SortableContainer/index.js @@ -111,7 +111,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); + } } } };