From 8b0d8589e38a49254c5e129f814f65d6650f563d Mon Sep 17 00:00:00 2001 From: glx Date: Sat, 20 Sep 2008 16:07:56 +0000 Subject: (svn r14363) -Fix [FS#2206]: some keypress combinations could be handled twice --- src/video/win32_v.cpp | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'src/video') diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp index 6eb9a0fc6..2bbb96c63 100644 --- a/src/video/win32_v.cpp +++ b/src/video/win32_v.cpp @@ -464,8 +464,6 @@ static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP return 0; case WM_CHAR: { - /* Silently drop all non-text messages as those were handled by WM_KEYDOWN */ - if (wParam < VK_SPACE) return 0; uint scancode = GB(lParam, 16, 8); uint charcode = wParam; @@ -491,12 +489,13 @@ static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP case WM_KEYDOWN: { keycode = MapWindowsKey(wParam); - /* Silently drop all text messages as those will be handled by WM_CHAR - * WM_KEYDOWN only handles CTRL+ commands and special keys like VK_LEFT, etc. */ - if (keycode == 0 || (keycode > WKC_PAUSE && GB(keycode, 13, 4) == 0)) return 0; - - /* Keys handled in WM_CHAR */ - if ((uint)(GB(keycode, 0, 12) - WKC_NUM_DIV) <= WKC_MINUS - WKC_NUM_DIV) return 0; + /* Silently drop all messages handled by WM_CHAR. */ + MSG msg; + if (PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE)) { + if (msg.message == WM_CHAR && GB(lParam, 16, 8) == GB(msg.lParam, 16, 8)) { + return 0; + } + } HandleKeypress(0 | (keycode << 16)); return 0; -- cgit v1.2.3-54-g00ecf