Re-introduce linebreak after caption, as in LyX 1.6 (#8514)

This commit is contained in:
Juergen Spitzmueller 2013-05-31 16:20:00 +02:00
parent 26910d5ec4
commit 83d0b3bd1a

View File

@ -276,6 +276,9 @@ void InsetCaption::latex(otexstream & os,
// optional argument.
runparams.moving_arg = !runparams.inTableCell;
InsetText::latex(os, runparams);
// Backwards compatibility: We always had a linebreak after
// the caption (see #8514)
os << breakln;
runparams_in.encoding = runparams.encoding;
}