From: Vincent Hennebert Date: Wed, 27 Feb 2008 15:09:06 +0000 (+0000) Subject: bpBeforeNormal and bpAfterNormal already include border-separation, no need to re... X-Git-Tag: fop-0_95beta~40 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=239800ae6ce64a1fec424cccacc2f34f90ec7942;p=xmlgraphics-fop.git bpBeforeNormal and bpAfterNormal already include border-separation, no need to re-substract it from the box height git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@631609 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/layoutmgr/table/ActiveCell.java b/src/java/org/apache/fop/layoutmgr/table/ActiveCell.java index c1e4ae619..46544700b 100644 --- a/src/java/org/apache/fop/layoutmgr/table/ActiveCell.java +++ b/src/java/org/apache/fop/layoutmgr/table/ActiveCell.java @@ -160,7 +160,6 @@ class ActiveCell { if (makeBoxForWholeRow) { elementList = new java.util.ArrayList(1); int height = row.getHeight().opt; - height -= 2 * tableLM.getHalfBorderSeparationBPD(); height -= bpBeforeNormal + bpAfterNormal; elementList.add(new KnuthBoxCellWithBPD(height)); } else {