r=rods, sr==attinasi
patch from simon montagu - hebrew comboboxes go haywire
This commit is contained in:
mkaply%us.ibm.com 2001-10-31 05:17:34 +00:00
Родитель e6b4535db9
Коммит 877964fad0
2 изменённых файлов: 6 добавлений и 0 удалений

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

@ -1097,6 +1097,9 @@ nsListControlFrame::Reflow(nsIPresContext* aPresContext,
bidiScrolledAreaWidth = aReflowState.mComputedWidth - scrollbarWidth + (6 * p2t);
if (needsVerticalScrollbar) bidiScrolledAreaWidth -= scrollbarWidth;
}
bidiScrolledAreaWidth -= (aReflowState.mComputedBorderPadding.left + aReflowState.mComputedBorderPadding.right);
firstPassState.mComputedWidth = bidiScrolledAreaWidth;
firstPassState.availableWidth = bidiScrolledAreaWidth;
nsScrollFrame::Reflow(aPresContext, aDesiredSize, firstPassState, aStatus);

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

@ -1097,6 +1097,9 @@ nsListControlFrame::Reflow(nsIPresContext* aPresContext,
bidiScrolledAreaWidth = aReflowState.mComputedWidth - scrollbarWidth + (6 * p2t);
if (needsVerticalScrollbar) bidiScrolledAreaWidth -= scrollbarWidth;
}
bidiScrolledAreaWidth -= (aReflowState.mComputedBorderPadding.left + aReflowState.mComputedBorderPadding.right);
firstPassState.mComputedWidth = bidiScrolledAreaWidth;
firstPassState.availableWidth = bidiScrolledAreaWidth;
nsScrollFrame::Reflow(aPresContext, aDesiredSize, firstPassState, aStatus);