Commit a8e7348a authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

user32: Call DefWindowProc() in DesktopWndProc().

This fixes a regression introduced by commit fc14753d. WM_NCCALCSIZE is not handled yet because it initiates loading the driver again. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45485Signed-off-by: 's avatarJózef Kucia <jkucia@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent b3717a92
......@@ -127,8 +127,10 @@ LRESULT WINAPI DesktopWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lP
}
return TRUE;
}
case WM_NCCALCSIZE:
return 0;
default:
return 0; /* all other messages are ignored */
return DefWindowProcW( hwnd, message, wParam, lParam );
}
}
......
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