]> git.lyx.org Git - features.git/commitdiff
Revert "Fix bug #11616"
authorJuergen Spitzmueller <spitz@lyx.org>
Thu, 18 Jul 2019 15:04:18 +0000 (17:04 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Thu, 18 Jul 2019 15:04:18 +0000 (17:04 +0200)
This reverts commit 2890b99a76ec58e57168b26cd1872e050eb37cfb.

A real fix follows in a minute

src/insets/InsetBranch.cpp

index 7947b8ec392f6ca8706c8b3c7f959ec6181d6d3b..88d00e641e486a7b76507d0ae40ee652badf9844 100644 (file)
@@ -294,7 +294,7 @@ void InsetBranch::latex(otexstream & os, OutputParams const & runparams) const
 {
        if (producesOutput()) {
                OutputParams rp = runparams;
-               rp.inbranch = rp.use_babel || rp.use_polyglossia;
+               rp.inbranch = true;
                InsetText::latex(os, rp);
        }
 }