Skip to content

Commit 067e30e

Browse files
authored
Revert "fix: remove 300ms click delay by setting click interval to 0 (#10388)" (#10420)
This reverts commit 8e26bd2.
1 parent 8e26bd2 commit 067e30e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/core/src/lib/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export const RECOGNIZERS = {
105105
pinch: [Pinch, {}, null, ['multipan']],
106106
pan: [Pan, {threshold: 1}, ['pinch'], ['multipan']],
107107
dblclick: [Tap, {event: 'dblclick', taps: 2}],
108-
click: [Tap, {event: 'click', interval: 0}, null, ['dblclick']]
108+
click: [Tap, {event: 'click'}, null, ['dblclick']]
109109
} as const;
110110

111111
export type RecognizerOptions = {

0 commit comments

Comments
 (0)