Numpad Del fix
This commit is contained in:
parent
57bd70555d
commit
0514770bd6
@ -12,6 +12,9 @@ ______________________________________________________________________
|
|||||||
Notes for GoldED+ 1.1.5, /snapshot/
|
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.
|
- Fixed deadkey-space combinations in Win32 version.
|
||||||
|
|
||||||
- Compatibility fix for http://www.chat.ru/~tulser/clipbrd.zip. Though
|
- Compatibility fix for http://www.chat.ru/~tulser/clipbrd.zip. Though
|
||||||
|
@ -1232,6 +1232,10 @@ gkey kbxget_raw(int mode) {
|
|||||||
ReadConsoleInput(gkbd_hin, &inp, 1, &nread);
|
ReadConsoleInput(gkbd_hin, &inp, 1, &nread);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fix Win9x anomaly
|
||||||
|
if((CKS & NUMLOCK_ON) and (VKC == VK_DELETE))
|
||||||
|
VKC = VK_DECIMAL;
|
||||||
|
|
||||||
switch(VKC) {
|
switch(VKC) {
|
||||||
// Not meanful keys
|
// Not meanful keys
|
||||||
case VK_SHIFT:
|
case VK_SHIFT:
|
||||||
|
Reference in New Issue
Block a user