aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/flow/TableCell.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/fop/fo/flow/TableCell.java')
-rw-r--r--src/org/apache/fop/fo/flow/TableCell.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/org/apache/fop/fo/flow/TableCell.java b/src/org/apache/fop/fo/flow/TableCell.java
index 29188e2e5..0a5f69b25 100644
--- a/src/org/apache/fop/fo/flow/TableCell.java
+++ b/src/org/apache/fop/fo/flow/TableCell.java
@@ -160,7 +160,9 @@ public class TableCell extends FObj {
return new Status(Status.AREA_FULL_SOME);
}
}
- height += blockArea.getHeight();
+ // bug fix from Eric Schaeffer
+ // height += blockArea.getHeight();
+ height = blockArea.getHeight();
}
blockArea.end();