Commit 7d6e9a1a authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

Fixed a bug with the processing of HitTest.

parent 86d0b031
......@@ -697,7 +697,10 @@ HEADER_HitTest (HWND hwnd, WPARAM wParam, LPARAM lParam)
HEADER_InternalHitTest (hwnd, &phti->pt, &phti->flags, &phti->iItem);
return phti->flags;
if (phti->flags == HHT_ONHEADER)
return phti->iItem;
else
return -1;
}
......
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