mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Fix bug 5263
http://bugzilla.lyx.org/show_bug.cgi?id=5263 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27020 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c14f945f5b
commit
946287b882
@ -76,6 +76,9 @@ MathWordList theWordList;
|
||||
|
||||
bool isMathFontAvailable(docstring & name)
|
||||
{
|
||||
if (!use_gui)
|
||||
return false;
|
||||
|
||||
FontInfo f;
|
||||
augmentFont(f, name);
|
||||
|
||||
@ -97,9 +100,6 @@ bool isMathFontAvailable(docstring & name)
|
||||
|
||||
void initSymbols()
|
||||
{
|
||||
if (!use_gui)
|
||||
return;
|
||||
|
||||
FileName const filename = libFileSearch(string(), "symbols");
|
||||
LYXERR(Debug::MATHED, "read symbols from " << filename);
|
||||
if (filename.empty()) {
|
||||
|
Loading…
Reference in New Issue
Block a user