mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Fix the fix of revision 59258. By the way, I forgot to say that this "feature" was introduced in revision 54107.
svn path=/trunk/; revision=59259
This commit is contained in:
parent
70202f89b6
commit
8eccf8f3b5
1 changed files with 4 additions and 3 deletions
|
@ -31,9 +31,10 @@ DBG_DEFAULT_CHANNEL(UserHotkey);
|
|||
* (hyphen / substract sign) on a 82-key keyboard.
|
||||
*/
|
||||
/* thread hwnd modifiers vk id next */
|
||||
HOT_KEY hkF12 = {NULL, NULL, 0, VK_F12, IDHK_F12, NULL};
|
||||
HOT_KEY hkShiftF12 = {NULL, NULL, MOD_SHIFT, VK_F12, IDHK_SHIFTF12, &hkF12};
|
||||
HOT_KEY hkWinKey = {NULL, NULL, MOD_WIN, 0, IDHK_WINKEY, &hkShiftF12};
|
||||
// HOT_KEY hkF12 = {NULL, NULL, 0, VK_F12, IDHK_F12, NULL};
|
||||
// HOT_KEY hkShiftF12 = {NULL, NULL, MOD_SHIFT, VK_F12, IDHK_SHIFTF12, &hkF12};
|
||||
// HOT_KEY hkWinKey = {NULL, NULL, MOD_WIN, 0, IDHK_WINKEY, &hkShiftF12};
|
||||
HOT_KEY hkWinKey = {NULL, NULL, MOD_WIN, 0, IDHK_WINKEY, NULL};
|
||||
|
||||
PHOT_KEY gphkFirst = &hkWinKey;
|
||||
BOOL bWinHotkeyActive = FALSE;
|
||||
|
|
Loading…
Reference in a new issue