mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
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:
parent
49710a766f
commit
b7453a740b
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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] =
|
||||
|
Loading…
Reference in New Issue
Block a user