Commit a7053ecc authored by Dylan Smith's avatar Dylan Smith Committed by Alexandre Julliard

comctl32/listview: Scrolling affects subitem rect.

parent 3952da83
...@@ -6873,7 +6873,7 @@ static BOOL LISTVIEW_GetSubItemRect(const LISTVIEW_INFO *infoPtr, INT nItem, LPR ...@@ -6873,7 +6873,7 @@ static BOOL LISTVIEW_GetSubItemRect(const LISTVIEW_INFO *infoPtr, INT nItem, LPR
return FALSE; return FALSE;
} }
OffsetRect(lprc, 0, Position.y); OffsetRect(lprc, Position.x - REPORT_MARGINX, Position.y);
return TRUE; return TRUE;
} }
......
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