this should have NOT used ABS. if negative there is NO ROUNDING ERROR! ;)r=akkana

This commit is contained in:
mjudge%netscape.com 2000-03-22 02:10:37 +00:00
Родитель 714f869e30
Коммит e9dd895798
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -2034,7 +2034,7 @@ nsTextFrame::GetPosition(nsIPresContext* aCX,
acx->GetWidth(text[indx], charWidth);
charWidth /= 2;
if (PR_ABS(PRInt32(aPoint.x) - origin.x) > textWidth+charWidth) {
if ((aPoint.x - origin.x) > textWidth+charWidth) {
indx++;
}
}

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

@ -2034,7 +2034,7 @@ nsTextFrame::GetPosition(nsIPresContext* aCX,
acx->GetWidth(text[indx], charWidth);
charWidth /= 2;
if (PR_ABS(PRInt32(aPoint.x) - origin.x) > textWidth+charWidth) {
if ((aPoint.x - origin.x) > textWidth+charWidth) {
indx++;
}
}