Do not care about branches when no package language is used.
This commit is contained in:
Enrico Forestieri 2019-07-17 21:28:49 +02:00
parent 55f5c00ba7
commit 2890b99a76

View File

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