https://bugs.documentfoundation.org/show_bug.cgi?id=148057
--- Comment #4 from Justin L <[email protected]> --- Created attachment 202385 --> https://bugs.documentfoundation.org/attachment.cgi?id=202385&action=edit Subscription Agreement_minimized.docx: minimal reproducer <w:p w14:paraId="571C18F7" > <w:pPr> <w:pStyle w:val="Schedule-1Title"/> # style contains a pageBreakBefore <w:pageBreakBefore w:val="0"/> # turns off the style's page break </w:pPr> <w:r w:rsidRPr="007C0C28"> <w:br w:type="column"/> # column break </w:r> <w:r w:rsidRPr="007C0C28"> \ <w:br/> # line break </w:r> So the column break gets added onto a line break (which is a numbered entry) via the CONTEXT_CHARACTER. Everything looks fine from a writerfilter aspect - UNO applies the column break to the paragraph property. Then the end of the paragraph rolls around, and the paragraph direct formatting CONTEXT_PARAGRAPH "BreakType" applies its value BreakType::BreakType_NONE. Solved by judiciously Inserting into the paragraph properties instead of the character properties. (Since there is no splitting of paragraphs in this code, it affects the entire paragraph and not only the "runs" that follow this w:br run.) -- You are receiving this mail because: You are the assignee for the bug.
