Allow starting a variation from keyboard entry in WB-JAWS
authorH.G. Muller <h.g.muller@hccnet.nl>
Sun, 2 Jan 2011 13:10:02 +0000 (14:10 +0100)
committerArun Persaud <arun@nubati.net>
Tue, 11 Jan 2011 05:22:03 +0000 (21:22 -0800)
The status of the shift key is remembered when space is pressed to
select a board square.

winboard/jaws.c
winboard/winboard.c

index d2a7740..bf7dab2 100644 (file)
@@ -1275,6 +1275,7 @@ NiceTime(int x)
                        KeyboardEvent(hwnd, message, wParam, lParam);\\r
                        break;\\r
                case VK_SPACE:\\r
+                        shiftKey = GetKeyState(VK_SHIFT) < 0;\\r
                        KeyboardMove(hwnd, message, wParam, lParam);\\r
                        break;\\r
                }\\r
index 3e889d8..bf84aaa 100644 (file)
@@ -6414,6 +6414,7 @@ TypeInMoveDialog(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
   case WM_COMMAND:\r
     switch (LOWORD(wParam)) {\r
     case IDOK:
+\r
       shiftKey = GetKeyState(VK_SHIFT) < 0; // [HGM] remember last shift status\r
       GetDlgItemText(hDlg, OPT_Move, move, sizeof(move));\r
       { int n; Board board;\r