Numpad Del fix

This commit is contained in:
Alexander S. Aganichev 2002-10-27 11:24:40 +00:00
parent 57bd70555d
commit 0514770bd6
2 changed files with 7 additions and 0 deletions

View File

@ -12,6 +12,9 @@ ______________________________________________________________________
Notes for GoldED+ 1.1.5, /snapshot/
______________________________________________________________________
- Once again Numlock was not taken into account for Del in Win9x (not
tested).
- Fixed deadkey-space combinations in Win32 version.
- Compatibility fix for http://www.chat.ru/~tulser/clipbrd.zip. Though

View File

@ -1232,6 +1232,10 @@ gkey kbxget_raw(int mode) {
ReadConsoleInput(gkbd_hin, &inp, 1, &nread);
}
// Fix Win9x anomaly
if((CKS & NUMLOCK_ON) and (VKC == VK_DELETE))
VKC = VK_DECIMAL;
switch(VKC) {
// Not meanful keys
case VK_SHIFT: