1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-02 02:23:12 +03:00

fixed backtick key detection - fixes #3742

This commit is contained in:
Eugene Pankov 2021-05-02 16:03:36 +02:00
parent 44040ba54b
commit f7b603a631
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -51,8 +51,8 @@ export function stringifyKeySequence (events: KeyboardEvent[]): string[] {
Period: '.',
Slash: '/',
Backslash: '\\',
IntlBackslash: '\\',
Backquote: '`',
IntlBackslash: '`',
Backquote: '~', // Electron says it's the tilde
Minus: '-',
Equal: '=',
Semicolon: ';',