(e)
| 425 | let {longPressProps} = useLongPress({ |
| 426 | isDisabled: !longPressEnabled, |
| 427 | onLongPress(e) { |
| 428 | if (e.pointerType === 'touch') { |
| 429 | onSelect(e); |
| 430 | manager.setSelectionBehavior('toggle'); |
| 431 | } |
| 432 | } |
| 433 | }); |
| 434 | |
| 435 | // Prevent native drag and drop on long press if we also select on long press. |
nothing calls this directly
no test coverage detected