Skip to content
This repository was archived by the owner on Apr 1, 2020. It is now read-only.

Fix #2466 by increasing MAX_CHORD_SIZE to prevent key swallowing #2577

Merged
merged 1 commit into from
Oct 5, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion browser/src/Services/InputManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down