Increase InputManager MAX_CHORD_SIZE to prevent key swallowing with fast typing (#2577)

This commit is contained in:
Pim 2018-10-05 18:27:19 +02:00 committed by Akin
parent 15a2ca9c38
commit b31243d644
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ export interface KeyBindingMap {
}
const MAX_DELAY_BETWEEN_KEY_CHORD = 250 /* milliseconds */
const MAX_CHORD_SIZE = 4
const MAX_CHORD_SIZE = 6
import { KeyboardResolver } from "./../Input/Keyboard/KeyboardResolver"