From 173563d537b41a8fd50dd59cb61c96b0f6168f5b Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Tue, 16 Sep 2008 21:10:30 +0000 Subject: [PATCH] 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 --- src/servers/app/FontManager.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/servers/app/FontManager.cpp b/src/servers/app/FontManager.cpp index ebbff0a1f2..9e9b7a3ddb 100644 --- a/src/servers/app/FontManager.cpp +++ b/src/servers/app/FontManager.cpp @@ -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;