From 1183e898de1dad9ec3b79073103129e7bc6f7f6d Mon Sep 17 00:00:00 2001 From: kipp Date: Wed, 15 Jul 1998 17:04:30 +0000 Subject: [PATCH] Make bullets a bit smaller to look better --- layout/html/base/src/nsHTMLBullet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout/html/base/src/nsHTMLBullet.cpp b/layout/html/base/src/nsHTMLBullet.cpp index 7d0cf4e7ea93..3e110de2ef90 100644 --- a/layout/html/base/src/nsHTMLBullet.cpp +++ b/layout/html/base/src/nsHTMLBullet.cpp @@ -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; }