[PATCH 2/2] kernel32: Interpret Shift-Backspace as Backspace when using the Win32 keymap in wineconsole

Hugh McMaster hugh.mcmaster at outlook.com
Fri Nov 20 05:29:11 CST 2015


Fixes bug 34175 - https://bugs.winehq.org/show_bug.cgi?id=34175

Signed-off-by: Hugh McMaster <hugh.mcmaster at outlook.com>
---
 dlls/kernel32/editline.c | 1 +
 1 file changed, 1 insertion(+)

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




More information about the wine-patches mailing list