]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetVSpace.cpp
Typo
[features.git] / src / insets / InsetVSpace.cpp
index c774e98b8561f9e1a8e447445292b5ccfc28b9e7..80fba4dd1d861270e25f1d730625aa5bfef0c8ab 100644 (file)
@@ -209,9 +209,15 @@ void InsetVSpace::draw(PainterInfo & pi, int x, int y) const
 }
 
 
-void InsetVSpace::latex(otexstream & os, OutputParams const &) const
+void InsetVSpace::latex(otexstream & os, OutputParams const & rp) const
 {
-       os << from_ascii(space_.asLatexCommand(buffer().params())) << '\n';
+       os << from_ascii(space_.asLatexCommand(buffer().params())) << breakln;
+       if (rp.need_noindent) {
+               // If the paragraph starts with a vspace and has more than that
+               // content, the \\noindent needs to come after that
+               // (as \\noindent leaves vmode).
+               os << "\\noindent" << termcmd;
+       }
 }