Bug 328718 - "GetEdgePaperMarginCoord should extend one inch" [p=hb@calen.de (Hb) r+sr+a1.9=roc]

This commit is contained in:
reed@reedloden.com 2008-01-28 23:38:20 -08:00
Родитель eb9f7c7d23
Коммит 30cc94e6c2
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -211,8 +211,8 @@ nsSimplePageSequenceFrame::Reflow(nsPresContext* aPresContext,
nsMargin edgeTwips;
mPageData->mPrintSettings->GetEdgeInTwips(edgeTwips);
// sanity check the values. an inch is still probably excessive
nscoord inchInTwips = NS_INCHES_TO_TWIPS(1.0);
// sanity check the values. three inches are sometimes needed
nscoord inchInTwips = NS_INCHES_TO_TWIPS(3.0);
edgeTwips.top = PR_MIN(PR_MAX(edgeTwips.top, 0), inchInTwips);
edgeTwips.bottom = PR_MIN(PR_MAX(edgeTwips.bottom, 0), inchInTwips);
edgeTwips.left = PR_MIN(PR_MAX(edgeTwips.left, 0), inchInTwips);