Hugh McMaster : kernel32: Interpret Shift-Backspace as Backspace when using the Win32 keymap in wineconsole.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Nov 23 09:59:46 CST 2015


Module: wine
Branch: master
Commit: bbe3c9cfbde5ba61a6e9b19394e6b189747a8be1
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=bbe3c9cfbde5ba61a6e9b19394e6b189747a8be1

Author: Hugh McMaster <hugh.mcmaster at outlook.com>
Date:   Mon Nov 23 20:58:37 2015 +1100

kernel32: Interpret Shift-Backspace as Backspace when using the Win32 keymap in wineconsole.

Signed-off-by: Hugh McMaster <hugh.mcmaster at outlook.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/kernel32/editline.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/kernel32/editline.c b/dlls/kernel32/editline.c
index 0f3c2cd..1774739 100644
--- a/dlls/kernel32/editline.c
+++ b/dlls/kernel32/editline.c
@@ -892,6 +892,7 @@ static const KeyEntry Win32KeyMapCtrl[] =
 static const KeyMap Win32KeyMap[] =
 {
     {0,                  0, StdKeyMap},
+    {SHIFT_PRESSED,      0, StdKeyMap},
     {0,                  0, Win32StdKeyMap},
     {RIGHT_CTRL_PRESSED, 0, Win32KeyMapCtrl},
     {LEFT_CTRL_PRESSED,  0, Win32KeyMapCtrl},




More information about the wine-cvs mailing list