Skip to content

Commit 5cdf39d

Browse files
committed
more keymap fixes: we must use the x11 key names
git-svn-id: https://xpra.org/svn/Xpra/trunk@12628 3bb7dfac-3a0b-4e04-842a-767bc560f471
1 parent c9c7ac0 commit 5cdf39d

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

src/xpra/platform/darwin/keyboard_config.py

+11-10
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,17 @@ def get_keycode(self, client_keycode, keyname, modifiers):
7272
"8" : 28,
7373
"9" : 25,
7474
"0" : 29,
75-
"-" : 27,
76-
"=" : 24,
77-
"[" : 33,
78-
"]" : 30,
79-
"\\" : 42,
80-
";" : 41,
81-
"'" : 39,
82-
"," : 43,
83-
"." : 47,
84-
"/" : 44,
75+
"minus" : 27,
76+
"plus" : 69, #KeypadPlus
77+
"equal" : 24,
78+
"equal" : 24,
79+
"bracketleft" : 33,
80+
"bracketright" : 30,
81+
"semicolon" : 41,
82+
"apostrophe" : 39,
83+
"comma" : 43,
84+
"period" : 47,
85+
"slash" : 44,
8586
"grave" : 50,
8687
"backslash" : 42,
8788
"BackSpace" : 51,

0 commit comments

Comments
 (0)