Re-maps KEY_BRACELEFT/RIGHT for OSX users

Should fix #28098.

(cherry picked from commit 8cbfc0365b)
This commit is contained in:
KLee1248 2019-04-19 02:31:02 +00:00 committed by Rémi Verschelde
parent 2bbf5a31ec
commit e3b1f3c1ad
1 changed files with 4 additions and 4 deletions

View File

@ -969,10 +969,10 @@ static const _KeyCodeMap _keycodes[55] = {
{ 'i', KEY_I },
{ 'o', KEY_O },
{ 'p', KEY_P },
{ '[', KEY_BRACERIGHT },
{ ']', KEY_BRACELEFT },
{ '{', KEY_BRACERIGHT },
{ '}', KEY_BRACELEFT },
{ '[', KEY_BRACELEFT },
{ ']', KEY_BRACERIGHT },
{ '{', KEY_BRACELEFT },
{ '}', KEY_BRACERIGHT },
{ 'a', KEY_A },
{ 's', KEY_S },
{ 'd', KEY_D },