The code was not doing what said in the description.

(cherry picked from commit 45e0ce2372)
This commit is contained in:
Enrico Forestieri 2019-03-31 15:14:28 +02:00
parent b90638ccc3
commit a5f5985d28
2 changed files with 3 additions and 1 deletions

View File

@ -1333,7 +1333,7 @@ void TeXOnePar(Buffer const & buf,
&& nextpar->getAlign() == par.getAlign())
|| (!next_layout.isEnvironment()
&& nextpar->getDepth() > par.getDepth()
&& nextpar->getAlign() == par.getAlign())
&& nextpar->getAlign() == next_layout.align)
|| (!style.isEnvironment()
&& next_layout.latextype == LATEX_ENVIRONMENT
&& nextpar->getDepth() < par.getDepth())

View File

@ -127,6 +127,8 @@ What's new
- Only write btUnits if we have a bibliography (bug 11562).
- Fix paragraph break in particular cases (bug 11528).
* USER INTERFACE