1
0
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:
Simon Tatham 2000-09-22 09:49:34 +00:00
parent c89ca570fe
commit 985207d4a9

View File

@ -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;