diff options
author | Kelly Campbell <kellyc@apache.org> | 2001-02-23 06:00:29 +0000 |
---|---|---|
committer | Kelly Campbell <kellyc@apache.org> | 2001-02-23 06:00:29 +0000 |
commit | ddaf8b2ad8b8241641d9406805319709e17b2f0d (patch) | |
tree | fb9ec046012a7514c4ba31826468f717a577f39a /src/org/apache/fop/fo/flow/ExternalGraphic.java | |
parent | 20eb35ecb4511689c56bdf21c73eb03591e37d67 (diff) | |
download | xmlgraphics-fop-ddaf8b2ad8b8241641d9406805319709e17b2f0d.tar.gz xmlgraphics-fop-ddaf8b2ad8b8241641d9406805319709e17b2f0d.zip |
Patch for list-block to support body-start and label-end
PR: 682
Obtained from:
Submitted by: Peter S. Housel <housel@acm.org>
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194086 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fo/flow/ExternalGraphic.java')
-rw-r--r-- | src/org/apache/fop/fo/flow/ExternalGraphic.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/org/apache/fop/fo/flow/ExternalGraphic.java b/src/org/apache/fop/fo/flow/ExternalGraphic.java index 5636fa70a..c67f4f189 100644 --- a/src/org/apache/fop/fo/flow/ExternalGraphic.java +++ b/src/org/apache/fop/fo/flow/ExternalGraphic.java @@ -125,17 +125,6 @@ public class ExternalGraphic extends FObj { area.end(); } - if (this.isInLabel) { - startIndent += bodyIndent; - endIndent += (area.getAllocationWidth() - - distanceBetweenStarts - startIndent) + - labelSeparation; - } - - if (this.isInListBody) { - startIndent += bodyIndent + distanceBetweenStarts; - } - if (this.isInTableCell) { startIndent += forcedStartOffset; endIndent = area.getAllocationWidth() - forcedWidth - |