mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix bug #8139 and a thinko in [737e9b2c/lyxgit].
I had already noticed the above mentioned thinko and this commit should have been part of [3285ce1d5/lygit] but somehow I managed to lose it in the git branches game: do a branch for that, than try a different thing in another branch, then rebase to avoid merge conficts, and finally delete all unneeded branches. Well it is too much easy to do the wrong thing and pick the wrong branch, deleting the right one. I will never follow the git way anymore and will do I was used to do with svn.
This commit is contained in:
parent
e76389721a
commit
66a95b9c1b
@ -252,7 +252,9 @@ OutputParams::FLAVOR Converters::getFlavor(Graph::EdgePath const & path,
|
||||
for (Graph::EdgePath::const_iterator cit = path.begin();
|
||||
cit != path.end(); ++cit) {
|
||||
Converter const & conv = converterlist_[*cit];
|
||||
if (conv.latex)
|
||||
if (conv.latex) {
|
||||
if (conv.latex_flavor == "latex")
|
||||
return OutputParams::LATEX;
|
||||
if (conv.latex_flavor == "xelatex")
|
||||
return OutputParams::XETEX;
|
||||
if (conv.latex_flavor == "lualatex")
|
||||
@ -261,6 +263,7 @@ OutputParams::FLAVOR Converters::getFlavor(Graph::EdgePath const & path,
|
||||
return OutputParams::DVILUATEX;
|
||||
if (conv.latex_flavor == "pdflatex")
|
||||
return OutputParams::PDFLATEX;
|
||||
}
|
||||
if (conv.xml)
|
||||
return OutputParams::XML;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user