From 2116fad350f787ad6552942203eaca4034d655eb Mon Sep 17 00:00:00 2001 From: tron Date: Thu, 10 Mar 2005 15:41:25 +0000 Subject: [PATCH] (svn r1984) -Fix: [1155762] Don't try to open the non-existent menu, when F10 is pressed --- win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32.c b/win32.c index 460e7a618d..e9b6365191 100644 --- a/win32.c +++ b/win32.c @@ -332,7 +332,7 @@ static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP return 0; // do nothing default: /* ALT in combination with something else */ _pressed_key = MapWindowsKey(wParam) << 16; - break; + return 0; } break; case WM_NCMOUSEMOVE: