mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 02:49:46 +00:00
Do not check for LaTeX fonts if we use nonTeXFont
This commit is contained in:
parent
269a942294
commit
e55aa4359f
@ -474,6 +474,9 @@ bool LaTeXFeatures::isRequired(string const & name) const
|
||||
|
||||
bool LaTeXFeatures::isProvided(string const & name) const
|
||||
{
|
||||
if (params_.useNonTeXFonts)
|
||||
return params_.documentClass().provides(name);
|
||||
|
||||
bool const ot1 = (params_.font_encoding() == "default"
|
||||
|| params_.font_encoding() == "OT1");
|
||||
bool const complete = (params_.fonts_sans == "default")
|
||||
|
Loading…
Reference in New Issue
Block a user