Update fallback mappings after removal of BitStream fonts. Not sure these are needed at all though.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27587 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2008-09-16 21:10:30 +00:00
parent b2c4c4f1f7
commit 173563d537
1 changed files with 6 additions and 6 deletions

View File

@ -322,16 +322,16 @@ FontManager::_LoadRecentFontMappings()
ttfontsPath.Append("ttfonts");
BPath veraFontPath = ttfontsPath;
veraFontPath.Append("Vera.ttf");
_AddDefaultMapping("Bitstream Vera Sans", "Roman", veraFontPath.Path());
veraFontPath.Append("DejaVuSans.ttf");
_AddDefaultMapping("DejaVu Sans", "Book", veraFontPath.Path());
veraFontPath.SetTo(ttfontsPath.Path());
veraFontPath.Append("VeraBd.ttf");
_AddDefaultMapping("Bitstream Vera Sans", "Bold", veraFontPath.Path());
veraFontPath.Append("DejaVuSans-Bold.ttf");
_AddDefaultMapping("DejaVu Sans", "Bold", veraFontPath.Path());
veraFontPath.SetTo(ttfontsPath.Path());
veraFontPath.Append("VeraMono.ttf");
_AddDefaultMapping("Bitstream Vera Sans Mono", "Roman", veraFontPath.Path());
veraFontPath.Append("DejaVuSansMono.ttf");
_AddDefaultMapping("DejaVu Sans Mono", "Book", veraFontPath.Path());
}
return false;