Make scrollbox report the correct maximum width. Bug 276286, patch by bernd,

r+sr=bzbarsky, a=asa
This commit is contained in:
bzbarsky%mit.edu 2005-01-09 21:23:43 +00:00
Родитель 8ab6e0d7d1
Коммит cbe2e05d5d
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -878,6 +878,10 @@ nsBoxFrame::Reflow(nsPresContext* aPresContext,
aDesiredSize.mOverflowArea = *overflowArea;
}
if(aDesiredSize.mFlags & NS_REFLOW_CALC_MAX_WIDTH) {
aDesiredSize.mMaximumWidth = prefSize.width;
}
// max sure the max element size reflects
// our min width
nscoord* maxElementWidth = state.GetMaxElementWidth();