if a page break was between items
it was incorrectly return AREA_FULL_NONE when
some list items were already present
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193984
13f79535-47bb-0310-9956-
ffa450edef68
listItem.setBodyIndent(this.bodyIndent);
Status status;
if ((status = listItem.layout(blockArea)).isIncomplete()) {
+ if(status.getCode() == Status.AREA_FULL_NONE && i > 0) {
+ status = new Status(Status.AREA_FULL_SOME);
+ }
this.marker = i;
blockArea.end();
area.addChild(blockArea);