Skip to content

Commit

Permalink
BF: Redefines key code 43 to tab on Mac (was escape)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvbridges authored and peircej committed Oct 7, 2019
1 parent da83429 commit 95326ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psychopy/hardware/keyboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ def _processEvts(self):
29: 'z',
30: '1', 31: '2', 32: '3', 33: '4', 34: '5', 35: '6', 36: '7',
37: '8', 38: '9', 39: '0',
40: 'return', 41: 'escape', 42: 'backspace', 43: 'escape', 44: 'space',
40: 'return', 41: 'escape', 42: 'backspace', 43: 'tab', 44: 'space',
45: 'minus', 46: 'equal',
47: 'bracketleft', 48: 'bracketright', 49: 'backslash', 51: 'semicolon',
52: 'apostrophe', 53: 'grave', 54: 'comma', 55: 'period', 56: 'slash',
Expand Down

0 comments on commit 95326ca

Please sign in to comment.