mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-04-10 07:38:06 -05:00
Num Lock shouldn't send anything in non-app-keypad mode
[originally from svn r612]
This commit is contained in:
parent
c89ca570fe
commit
985207d4a9
2
window.c
2
window.c
@ -1798,7 +1798,7 @@ static WPARAM compose_key = 0;
|
||||
|
||||
if ( cfg.funky_type == 0 ||
|
||||
( cfg.funky_type == 1 && app_keypad_keys)) switch(wParam) {
|
||||
case VK_EXECUTE: xkey = 'P'; break;
|
||||
case VK_EXECUTE: if (app_keypad_keys) xkey = 'P'; break;
|
||||
case VK_DIVIDE: xkey = 'Q'; break;
|
||||
case VK_MULTIPLY:xkey = 'R'; break;
|
||||
case VK_SUBTRACT:xkey = 'S'; break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user