fix: add spb before list if spb located before first list item content

This commit is contained in:
Georgy Litvinov 2021-11-21 15:48:57 +01:00
parent 2ff537d384
commit 2b1c69e85e
No known key found for this signature in database
GPG key ID: E8185E06DE0279DD

View file

@ -60,9 +60,14 @@ public class ListSplitter extends BasicSplitter implements ISplitter {
} else { } else {
list.removeChild(child); list.removeChild(child);
} }
} else {
//Debug.printNode(child);
//Found SPB at start of the list
//Add SPB before the list
if (isRootElement(list)) {
parent.insertBefore(softPageBreak, list);
}
} }
// Debug.printNode(child);
break; break;
} else { } else {
// Not with SPB yet, move node, set dataMoved=true // Not with SPB yet, move node, set dataMoved=true