зеркало из https://github.com/mozilla/pjs.git
Fixed divide by 0 bug in boxes.
This commit is contained in:
Родитель
65a591b2b5
Коммит
9941271de8
|
@ -1114,7 +1114,7 @@ nsBoxFrame::LayoutChildrenInRect(nsRect& size)
|
|||
}
|
||||
}
|
||||
|
||||
float stretchFactor = sizeRemaining/springConstantsRemaining;
|
||||
float stretchFactor = (springConstantsRemaining == 0.0) ? float(0.0) : sizeRemaining/springConstantsRemaining;
|
||||
|
||||
nscoord& s = GET_WIDTH(size);
|
||||
s = 0;
|
||||
|
|
Загрузка…
Ссылка в новой задаче