I tweaked the home,end,page-up,page-down key codes to make them behave like the mac #1

Merged
nathanb merged 1 commit from home-end-page-up-down into master 2012-12-18 15:07:19 -05:00
Showing only changes of commit e025b89dce - Show all commits

View file

@ -18,10 +18,10 @@ public static class KeyboardControl
const int VK_MEDIA_PREV_TRACK = 177;
const int VK_MEDIA_STOP = 178;
const int VK_MEDIA_PLAY_PAUSE = 179;
const int VK_END = 37;
const int VK_HOME = 36;
const int VK_PAGEUP = 33;
const int VK_PAGEDOWN = 35;
const int VK_END = 0x23;
const int VK_HOME = 0x24;
const int VK_PAGEUP = 0x21;
const int VK_PAGEDOWN = 0x22;
const int VK_F3 = 117;
const int VK_INSERT = 45;