Bug 324866. Leave cellRect in frame coordinates until after we've checked OffsetForHorzScroll. r+sr=dbaron

This commit is contained in:
roc+%cs.cmu.edu 2006-01-27 01:56:11 +00:00
Родитель 5454eda94d
Коммит a78d2d2a90
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -2452,8 +2452,9 @@ nsTreeBodyFrame::PaintRow(PRInt32 aRowIndex,
if (currCol->GetWidth()) {
nsRect cellRect;
CalcColumnRect(cellRect, currCol, rowRect.y, rowRect.height);
cellRect.x += aPt.x;
if (OffsetForHorzScroll(cellRect, PR_FALSE)) {
cellRect.x += aPt.x;
nsRect dirtyRect;
nscoord dummy;
if (dirtyRect.IntersectRect(aDirtyRect, cellRect))