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

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: ';',