aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/flow/TableCell.java
diff options
context:
space:
mode:
authorSteve Coffman <gears@apache.org>2000-11-08 22:07:27 +0000
committerSteve Coffman <gears@apache.org>2000-11-08 22:07:27 +0000
commit641d55aa6dd3206d1471734a99675c65ed890b51 (patch)
tree2f842a36ee3d596151a3428e2e077fcdb91fae14 /src/org/apache/fop/fo/flow/TableCell.java
parentf7a79ddfc29bdc593213d20e176387a12550046b (diff)
downloadxmlgraphics-fop-641d55aa6dd3206d1471734a99675c65ed890b51.tar.gz
xmlgraphics-fop-641d55aa6dd3206d1471734a99675c65ed890b51.zip
Corinna Hischke's excellent table padding and partial border fixes. Very
Cool! git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193751 13f79535-47bb-0310-9956-ffa450edef68
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, 4 insertions, 0 deletions
diff --git a/src/org/apache/fop/fo/flow/TableCell.java b/src/org/apache/fop/fo/flow/TableCell.java
index 16aba1704..ccb397b3d 100644
--- a/src/org/apache/fop/fo/flow/TableCell.java
+++ b/src/org/apache/fop/fo/flow/TableCell.java
@@ -260,6 +260,10 @@ public class TableCell extends FObj {
areaContainer.end();
area.addChild(areaContainer);
+ area.setHeight(getHeight());
+ // reset absoluteHeight to beginning of row
+ area.setAbsoluteHeight(areaContainer.getAbsoluteHeight());
+
return new Status(Status.OK);
}