Skip to content

Commit 077b065

Browse files
authored
Merge pull request #4 from nickjudson/FooterParseFix
Fix footer style parsing
2 parents 27ca4e1 + bfc3b67 commit 077b065

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/RtfDomParser/RTFDomDocument.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1808,7 +1808,7 @@ private void Load(RTFReader reader , DocumentFormatInfo parentFormat)
18081808
{
18091809
// analyse footer
18101810
RTFDomFooter footer = new RTFDomFooter();
1811-
footer.Style = HeaderFooterStyle.FirstPage;
1811+
footer.Style = HeaderFooterStyle.AllPages;
18121812
this.AppendChild(footer);
18131813
Load(reader, parentFormat);
18141814
footer.Locked = true;

0 commit comments

Comments
 (0)