-
Notifications
You must be signed in to change notification settings - Fork 311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delay #146
Comments
Yup! Check out https://github.com/dmauro/Keypress/blob/development/keypress.coffee#L95, it's a little hidden but |
It has no effect... i changed to 2000 miliseconds but i still need to type very fast for the combo to get count. The code:
|
I don't know what changed, but I found if ('g' in keyListener && 'sequence_delay' in (keyListener as any)!.g) {
(keyListener as any).g.sequence_delay = MaxSequenceTimeoutInMillis;
} else if ('sequence_delay' in keyListener) {
// this one is just in case the "global" property starts working some day
(keyListener as any).sequence_delay = MaxSequenceTimeoutInMillis;
} |
Is it possible to increase the delay time of a combination?
I have longer combinations on my web app like 'a r c g' or 'a r c g k' and they take a bit time to think & press.
The text was updated successfully, but these errors were encountered: