Skip to content

Commit bfc3b67

Browse files
committed
Fix footer style parsing
Style set to FirstPage when should be AllPages
1 parent 27ca4e1 commit bfc3b67

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)