Skip to content
Snippets Groups Projects
Commit 021dd990 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Fixed HWND compare in NC_HandleSetCursor.

parent 6e24a0a4
No related branches found
No related tags found
No related merge requests found
......@@ -1729,7 +1729,8 @@ LONG NC_HandleNCActivate( HWND hwnd, WPARAM wParam )
*/
LONG NC_HandleSetCursor( HWND hwnd, WPARAM wParam, LPARAM lParam )
{
if (hwnd != (HWND)wParam) return 0; /* Don't set the cursor for child windows */
if (hwnd != WIN_GetFullHandle( (HWND)wParam ))
return 0; /* Don't set the cursor for child windows */
switch(LOWORD(lParam))
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment