Mercurial > hg > vboxdotnet
changeset 5:00fb4879d273
Small fix in the keyboard mappings for the space key
author | Ivo Smits |
---|---|
date | Fri, 06 May 2011 03:56:30 +0200 |
parents | 64226294e26b |
children | e640ca67b819 |
files | VBoxFrontend/VBoxKeyboardHelper.cs |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/VBoxFrontend/VBoxKeyboardHelper.cs Wed May 04 21:15:22 2011 +0200 +++ b/VBoxFrontend/VBoxKeyboardHelper.cs Fri May 06 03:56:30 2011 +0200 @@ -24,7 +24,7 @@ code = codes_Fkeys[keycode - Keys.F1]; } else { switch (keycode) { - case Keys.Space: code = 0x0239; break; + case Keys.Space: code = 0x39; break; //0x0239; case Keys.Left: code = 0xe04b; break; case Keys.Up: code = 0xe048; break; case Keys.Right: code = 0xe04d; break;