Fix for \mathfrak

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3187 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Dekel Tsur 2001-12-11 11:40:10 +00:00
parent 49710a766f
commit b7453a740b
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2001-12-11 Dekel Tsur <dekelts@tau.ac.il>
* lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
* FontLoader.C (getFontinfo): Use "*-eufrak-medium"
2001-12-11 André Pönitz <poenitz@gmx.net>
* FontLoader.C:

View File

@ -143,7 +143,7 @@ void FontLoader::getFontinfo(LyXFont::FONT_FAMILY family,
case LyXFont::EUFRAK_FAMILY:
fontinfo[family][series][shape] =
new FontInfo("-*-eufrak-*-*-*-*-*-*-*-*-*-*-*-*");
new FontInfo("-*-eufrak-medium-*-*-*-*-*-*-*-*-*-*-*");
return;
default:

View File

@ -40,9 +40,9 @@ using std::strlen;
namespace {
char const * GUIFamilyNames[12] =
char const * GUIFamilyNames[LyXFont::NUM_FAMILIES + 2 /* default & error */] =
{ N_("Roman"), N_("Sans serif"), N_("Typewriter"), N_("Symbol"),
"cmr", "cmsy", "cmm", "cmex", "msa", "msb",
"cmr", "cmsy", "cmm", "cmex", "msa", "msb", "eufrak",
N_("Inherit"), N_("Ignore") };
char const * GUISeriesNames[4] =