This patch adds <Enter> to the characters that cause an automatic switch to the ICS...
authorH.G. Muller <h.g.muller@hccnet.nl>
Fri, 23 Oct 2009 04:33:07 +0000 (21:33 -0700)
committerArun Persaud <arun@nubati.net>
Fri, 23 Oct 2009 04:33:07 +0000 (21:33 -0700)
winboard/winboard.c

index 31afd62..24fd967 100644 (file)
@@ -5428,7 +5428,7 @@ WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
     \r
     JAWS_ALT_INTERCEPT\r
 \r
-    if (appData.icsActive && (char)wParam > ' ' && !((char)wParam >= '1' && (char)wParam <= '9')) { \r
+    if (appData.icsActive && ((char)wParam == '\r' || (char)wParam > ' ' && !((char)wParam >= '1' && (char)wParam <= '9'))) { \r
        // [HGM] movenum: for non-zero digits we always do type-in dialog\r
        HWND h = GetDlgItem(hwndConsole, OPT_ConsoleInput);\r
        if (IsIconic(hwndConsole)) ShowWindow(hwndConsole, SW_RESTORE);\r