diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2008-11-18 17:58:54 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2008-11-18 17:58:54 +0000 |
commit | b9b72cfc2aae63c0c6c59edf87250010e6e79c9c (patch) | |
tree | 6aee81beb74ff2c63f290718661ff1feb1d446d9 /src | |
parent | 3c666992c4e6159b6bbc0f5f5fa103dc835f2c08 (diff) | |
download | xmlgraphics-fop-b9b72cfc2aae63c0c6c59edf87250010e6e79c9c.tar.gz xmlgraphics-fop-b9b72cfc2aae63c0c6c59edf87250010e6e79c9c.zip |
Bugfix: do not reset TextLM.hasChanged, but combine (||) with previous value.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@718666 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/inline/TextLayoutManager.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/inline/TextLayoutManager.java b/src/java/org/apache/fop/layoutmgr/inline/TextLayoutManager.java index 459bce0e8..27ed38b53 100644 --- a/src/java/org/apache/fop/layoutmgr/inline/TextLayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/inline/TextLayoutManager.java @@ -910,7 +910,7 @@ public class TextLayoutManager extends LeafNodeLayoutManager { } startIndex = stopIndex; } - this.hasChanged = !nothingChanged; + this.hasChanged = (this.hasChanged || !nothingChanged); } /** {@inheritDoc} */ |