bug 5522 - initialize max element size. sr=attinasi, r=peterl.

This commit is contained in:
karnaze%netscape.com 2001-05-01 12:42:53 +00:00
Родитель b8449628cd
Коммит 9a172ef481
2 изменённых файлов: 10 добавлений и 0 удалений

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

@ -678,6 +678,11 @@ nsObjectFrame::Reflow(nsIPresContext* aPresContext,
// Get our desired size // Get our desired size
GetDesiredSize(aPresContext, aReflowState, aMetrics); GetDesiredSize(aPresContext, aReflowState, aMetrics);
// initialize max element size if present
if (aMetrics.maxElementSize) {
aMetrics.maxElementSize->width = 0;
aMetrics.maxElementSize->height = 0;
}
// could be an image // could be an image
nsIFrame * child = mFrames.FirstChild(); nsIFrame * child = mFrames.FirstChild();

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

@ -678,6 +678,11 @@ nsObjectFrame::Reflow(nsIPresContext* aPresContext,
// Get our desired size // Get our desired size
GetDesiredSize(aPresContext, aReflowState, aMetrics); GetDesiredSize(aPresContext, aReflowState, aMetrics);
// initialize max element size if present
if (aMetrics.maxElementSize) {
aMetrics.maxElementSize->width = 0;
aMetrics.maxElementSize->height = 0;
}
// could be an image // could be an image
nsIFrame * child = mFrames.FirstChild(); nsIFrame * child = mFrames.FirstChild();