fix: double click duration

pull/6489/head
Konstantinos Kaloutas 2022-08-29 08:25:25 +03:00
parent 52866ba1e5
commit d43de9b83f
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ export const TAU = PI / 2
export const PI2 = PI * 2
export const EPSILON = Math.PI / 180
export const FIT_TO_SCREEN_PADDING = 100
export const DOUBLE_CLICK_DURATION = 450
export const DOUBLE_CLICK_DURATION = 300
export const CARDINAL_DIRECTIONS = ['north', 'east', 'south', 'west']
export const NOOP = () => void null
const isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent)