Commit 1ea1c3d0 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

progman: Fix accelerator support.

parent 01839d19
......@@ -180,8 +180,8 @@ static LRESULT CALLBACK MAIN_MainWndProc(HWND hWnd, UINT msg,
break;
case WM_COMMAND:
if (wParam < PM_FIRST_CHILD){
MAIN_MenuCommand(hWnd, wParam, lParam);
if (LOWORD(wParam) < PM_FIRST_CHILD){
MAIN_MenuCommand(hWnd, LOWORD(wParam), lParam);
}
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment