]> git.lyx.org Git - features.git/commitdiff
Main argument of a subfloat is not a moving argument
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 20 Feb 2015 10:51:40 +0000 (11:51 +0100)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 20 Feb 2015 10:51:40 +0000 (11:51 +0100)
Fixes bug: #9421

src/insets/InsetFloat.cpp

index 9bd5bccaf9695a15762d2149cdc2fc338c460456..0b6ed66fd99e24b3c2a02ffa540e53fb70128ee7 100644 (file)
@@ -345,6 +345,8 @@ void InsetFloat::latex(otexstream & os, OutputParams const & runparams_in) const
                        os << caption;
                }
                os << '{';
+               // The main argument is the contents of the float. This is not a moving argument.
+               rp.moving_arg = false;
                rp.inFloat = OutputParams::SUBFLOAT;
                InsetText::latex(os, rp);
                os << "}";