Skip to content

Commit

Permalink
more keymap fixes: we must use the x11 key names
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@12628 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed May 21, 2016
1 parent c9c7ac0 commit 5cdf39d
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions src/xpra/platform/darwin/keyboard_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,17 @@ def get_keycode(self, client_keycode, keyname, modifiers):
"8" : 28,
"9" : 25,
"0" : 29,
"-" : 27,
"=" : 24,
"[" : 33,
"]" : 30,
"\\" : 42,
";" : 41,
"'" : 39,
"," : 43,
"." : 47,
"/" : 44,
"minus" : 27,
"plus" : 69, #KeypadPlus
"equal" : 24,
"equal" : 24,
"bracketleft" : 33,
"bracketright" : 30,
"semicolon" : 41,
"apostrophe" : 39,
"comma" : 43,
"period" : 47,
"slash" : 44,
"grave" : 50,
"backslash" : 42,
"BackSpace" : 51,
Expand Down

0 comments on commit 5cdf39d

Please sign in to comment.