mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Fix thinko from earlier commit.
We need to output the deferred material AFTER the paragraph is closed.
This commit is contained in:
parent
9d3917a4b6
commit
c760707548
@ -875,13 +875,14 @@ ParagraphList::const_iterator makeParagraphs(Buffer const & buf,
|
||||
runparams, text.outerFont(distance(begin, par)),
|
||||
opened, needclose);
|
||||
|
||||
if (!deferred.empty()) {
|
||||
if (needclose) {
|
||||
closeTag(xs, lay);
|
||||
xs << html::CR();
|
||||
}
|
||||
|
||||
if (!deferred.empty()) {
|
||||
xs << XHTMLStream::ESCAPE_NONE << deferred << html::CR();
|
||||
}
|
||||
if (needclose) {
|
||||
closeTag(xs, lay);
|
||||
xs << html::CR();
|
||||
}
|
||||
}
|
||||
return pend;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user