Commit 2de84c9b authored by Alexandre Julliard's avatar Alexandre Julliard

Do not send WM_SIZING to 16-bit windows.

parent ebdb9dc7
......@@ -1923,6 +1923,8 @@ INT WINPROC_MapMsg32ATo16( HWND hwnd, UINT msg32, WPARAM wParam32,
case WM_WININICHANGE:
FIXME_(msg)("message %04x needs translation\n", msg32 );
return -1;
case WM_SIZING: /* should not be send to 16-bit apps */
return -1;
default: /* No translation needed */
return 0;
}
......
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