From c7a8efeab0c33751e770a66fe999536485e8c496 Mon Sep 17 00:00:00 2001 From: "Andreas L. Delmelle" Date: Fri, 30 Dec 2005 18:58:39 +0000 Subject: [PATCH] Applied white-space handling to leaders as well... git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@360142 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/fop/fo/FObjMixed.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/java/org/apache/fop/fo/FObjMixed.java b/src/java/org/apache/fop/fo/FObjMixed.java index b52cb9d03..d26dc6653 100644 --- a/src/java/org/apache/fop/fo/FObjMixed.java +++ b/src/java/org/apache/fop/fo/FObjMixed.java @@ -57,10 +57,8 @@ public abstract class FObjMixed extends FObj { /** @see org.apache.fop.fo.FONode#endOfNode() */ protected void endOfNode() throws FOPException { flushText(); - if (getNameId() != FO_LEADER) { - getFOEventHandler().whiteSpaceHandler - .handleWhiteSpace(this, currentTextNode); - } + getFOEventHandler().whiteSpaceHandler + .handleWhiteSpace(this, currentTextNode); super.endOfNode(); } @@ -88,7 +86,7 @@ public abstract class FObjMixed extends FObj { if (currentTextNode == null) { currentTextNode = child; } - } else if (getNameId() != FO_LEADER) { + } else { // handle white-space for all text up to here getFOEventHandler().whiteSpaceHandler .handleWhiteSpace(this, currentTextNode, child); -- 2.39.5