mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Language::fontenc(): Don't check for LaTeX font with nonTeX fonts.
This commit is contained in:
parent
9d24033d9b
commit
58d7bad447
@ -74,6 +74,11 @@ docstring const Language::translateLayout(string const & m) const
|
||||
|
||||
string Language::fontenc(BufferParams const & params) const
|
||||
{
|
||||
// Don't use LaTeX fonts, so just return the language's preferred
|
||||
// (although this is not used with nonTeXFonts anyway).
|
||||
if (params.useNonTeXFonts)
|
||||
return fontenc_.front() == "ASCII" ? "T1" : fontenc_.front();
|
||||
|
||||
// Determine optimal font encoding
|
||||
// We check whether the used rm font supports an encoding our language supports
|
||||
LaTeXFont const & lf =
|
||||
|
Loading…
Reference in New Issue
Block a user