]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Bugfix: do not reset TextLM.hasChanged, but combine (||) with previous value.
authorAndreas L. Delmelle <adelmelle@apache.org>
Tue, 18 Nov 2008 17:58:54 +0000 (17:58 +0000)
committerAndreas L. Delmelle <adelmelle@apache.org>
Tue, 18 Nov 2008 17:58:54 +0000 (17:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@718666 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/layoutmgr/inline/TextLayoutManager.java

index 459bce0e847e1a3c359d6a5356dec1434b1ab89b..27ed38b53cd0fdeccfbd5b022b2db8b563b7b279 100644 (file)
@@ -910,7 +910,7 @@ public class TextLayoutManager extends LeafNodeLayoutManager {
             }
             startIndex = stopIndex;
         }
-        this.hasChanged = !nothingChanged;
+        this.hasChanged = (this.hasChanged || !nothingChanged);
     }
 
     /** {@inheritDoc} */