diff --git a/src/picker/PickerColumn.js b/src/picker/PickerColumn.js index 1c18d4533..76ecb91d9 100644 --- a/src/picker/PickerColumn.js +++ b/src/picker/PickerColumn.js @@ -98,9 +98,13 @@ export default createComponent({ }, onTouchMove(event) { - preventDefault(event); this.moving = true; this.touchMove(event); + + if (this.direction === 'vertical') { + preventDefault(event, true); + } + this.offset = range( this.startOffset + this.deltaY, -(this.count * this.itemHeight),