Make bullets a bit smaller to look better

This commit is contained in:
kipp 1998-07-15 17:04:30 +00:00
Родитель 19f7a6209a
Коммит 1183e898de
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -558,7 +558,7 @@ BulletFrame::GetDesiredSize(nsIPresContext* aCX,
case NS_STYLE_LIST_STYLE_BASIC:
case NS_STYLE_LIST_STYLE_SQUARE:
t2p = aCX->GetTwipsToPixels();
bulletSize = nscoord(t2p * fm->GetMaxAscent() / 2);
bulletSize = nscoord(t2p * .8 * (fm->GetMaxAscent() / 2));
if (bulletSize < 1) {
bulletSize = MIN_BULLET_SIZE;
}