This commit is contained in:
evaughan%netscape.com 2000-05-26 01:10:50 +00:00
Родитель 9e3af2ecc3
Коммит d77929175e
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -947,12 +947,15 @@ nsSprocketLayout::InvalidateComputedSizes(nsComputedBoxSize* aComputedBoxSizes)
PRInt32
nsSprocketLayout::Round(PRInt32 aCoord, PRInt32 aOnePixel)
{
/*
PRInt32 newCoordPx = aCoord/aOnePixel;
PRInt32 diff = aCoord - (newCoordPx*aOnePixel);
if (diff > aOnePixel/2)
newCoordPx++;
return newCoordPx*aOnePixel;
*/
return aCoord;
}
void