mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 17:43:44 +00:00
Do not send WM_SIZING to 16-bit windows.
This commit is contained in:
parent
ebdb9dc7b4
commit
2de84c9bfa
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue