зеркало из https://github.com/mozilla/pjs.git
this should have NOT used ABS. if negative there is NO ROUNDING ERROR! ;)r=akkana
This commit is contained in:
Родитель
714f869e30
Коммит
e9dd895798
|
@ -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++;
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче