mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
comctl32/listview: Fix visibility computation in details view.
This commit is contained in:
parent
9576fb1836
commit
8c6d91052d
@ -1402,7 +1402,7 @@ static BOOL iterator_visibleitems(ITERATOR *i, const LISTVIEW_INFO *infoPtr, HDC
|
||||
while(iterator_next(i))
|
||||
{
|
||||
LISTVIEW_GetItemOrigin(infoPtr, i->nItem, &Position);
|
||||
rcItem.left = Position.x + Origin.x;
|
||||
rcItem.left = (infoPtr->uView == LV_VIEW_DETAILS) ? Origin.x : Position.x + Origin.x;
|
||||
rcItem.top = Position.y + Origin.y;
|
||||
rcItem.right = rcItem.left + infoPtr->nItemWidth;
|
||||
rcItem.bottom = rcItem.top + infoPtr->nItemHeight;
|
||||
@ -4376,7 +4376,7 @@ static void LISTVIEW_RefreshReport(LISTVIEW_INFO *infoPtr, ITERATOR *i, HDC hdc,
|
||||
{
|
||||
rcItem.top = 0;
|
||||
rcItem.bottom = infoPtr->nItemHeight;
|
||||
OffsetRect(&rcItem, Position.x, Position.y);
|
||||
OffsetRect(&rcItem, Origin.x, Position.y);
|
||||
if (!RectVisible(hdc, &rcItem)) continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user