minor fix in determining which layout algorithm to call based on available size

git-svn-id: svn://10.0.0.236/trunk@13661 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
buster%netscape.com
1998-10-29 19:42:43 +00:00
parent 1fb5bce42e
commit 378581e3b2
2 changed files with 4 additions and 2 deletions

View File

@@ -459,6 +459,7 @@ PRBool BasicTableLayoutStrategy::AssignPreliminaryColumnWidths()
mFixedTableWidth += specifiedFixedColWidth + colInset;
if (0==colIndex)
mFixedTableWidth += colInset;
if (PR_TRUE==gsDebug) printf("setting mFixedTableWidth=%d\n", mFixedTableWidth);
}
// cache the computed column info
@@ -838,7 +839,7 @@ PRBool BasicTableLayoutStrategy::BalanceProportionalColumns(const nsHTMLReflowSt
if (gsDebug) printf (" * auto table minTW does not fit, calling BalanceColumnsTableDoesNotFit\n");
result = BalanceColumnsTableDoesNotFit();
}
else if (mMaxTableWidth <= actualMaxWidth)
else if (mMaxTableWidth < actualMaxWidth)
{ // the max width of the table fits comfortably in the available space
if (gsDebug) printf (" * auto table desired size fits, calling BalanceColumnsTableFits\n");
result = BalanceColumnsTableFits(aReflowState, aAvailWidth,