]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Overflows may cause a row to be re-laid out, need to skip cell content that has alrea...
authorArt Welch <artw@apache.org>
Wed, 25 Apr 2001 22:01:24 +0000 (22:01 +0000)
committerArt Welch <artw@apache.org>
Wed, 25 Apr 2001 22:01:24 +0000 (22:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194225 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/flow/TableCell.java

index a6bf16b7f01126769b4d60d92a6556f475eedccf..a5c17aba8690033a772d6191e5e3d341dbd1046d 100644 (file)
@@ -175,9 +175,12 @@ public class TableCell extends FObj {
                                                fo.setIsInTableCell();
                                                fo.forceWidth(width); // ???
 
+                                               // Overflows may cause a row to be re-layedout, need to pass already processed content.
+                                               this.marker = i;
+
                                                Status status;
                                                if ((status = fo.layout(cellArea)).isIncomplete()) {
-                                                               this.marker = i;
+                                                               //this.marker = i;
                                                                if ((i == 0) && (status.getCode() == Status.AREA_FULL_NONE)) {
                                                                                return new Status(Status.AREA_FULL_NONE);
                                                                } else {